streamline newbie decomp/run process, update readme and gallery with new/updated information and pictures (#1132)

* streamline newbie decomp/run process, update readme and gallery with new/updated information and pictures

* and of course

* Fix errors

* fix gallery
This commit is contained in:
ManDude
2022-02-04 23:37:48 +00:00
committed by GitHub
parent 0816a1bf25
commit 32d8ae9b6e
20 changed files with 76 additions and 62 deletions
+3 -1
View File
@@ -29,6 +29,7 @@ Config read_config_file(const std::string& path_to_config_file) {
config.game_version = cfg.at("game_version").get<int>();
config.text_version = cfg.at("text_version").get<GameTextVersion>();
config.game_name = cfg.at("game_name").get<std::string>();
auto inputs_json = read_json_file_from_config(cfg, "inputs_file");
config.dgo_names = inputs_json.at("dgo_names").get<std::vector<std::string>>();
@@ -211,7 +212,8 @@ Config read_config_file(const std::string& path_to_config_file) {
config.merged_objects.insert(x);
}
config.levels_to_extract = cfg.at("levels_to_extract").get<std::vector<std::string>>();
config.levels_to_extract = inputs_json.at("levels_to_extract").get<std::vector<std::string>>();
config.levels_extract = cfg.at("levels_extract").get<bool>();
return config;
}