mirror of
https://github.com/open-goal/jak-project
synced 2026-09-06 11:20:54 -04:00
W/misc fixes (#1838)
* temp * temp * before cleaning up * cleanup merge * fix warnings * merge fix * clang format
This commit is contained in:
@@ -118,7 +118,7 @@ ObjectFileDB::ObjectFileDB(const std::vector<fs::path>& _dgos,
|
||||
const std::vector<fs::path>& object_files,
|
||||
const std::vector<fs::path>& str_files,
|
||||
const Config& config)
|
||||
: dts(config.game_version) {
|
||||
: dts(config.game_version), m_version(config.game_version) {
|
||||
Timer timer;
|
||||
|
||||
lg::info("-Loading types...");
|
||||
|
||||
@@ -343,6 +343,11 @@ class ObjectFileDB {
|
||||
uint32_t unique_obj_files = 0;
|
||||
uint32_t unique_obj_bytes = 0;
|
||||
} stats;
|
||||
|
||||
GameVersion version() const { return m_version; }
|
||||
|
||||
private:
|
||||
GameVersion m_version;
|
||||
};
|
||||
|
||||
std::string print_art_elt_for_dump(const std::string& group_name, const std::string& name, int idx);
|
||||
|
||||
Reference in New Issue
Block a user