[bones] Part 1: Joint (#1110)

* joints

* bones

* align spr to 16k

* fix bug

* lack of sound hack

* clean up
This commit is contained in:
water111
2022-01-28 21:32:03 -05:00
committed by GitHub
parent eb53f410e5
commit 57649d243f
49 changed files with 6817 additions and 1373 deletions
+3
View File
@@ -185,6 +185,9 @@ Config read_config_file(const std::string& path_to_config_file) {
.get<std::unordered_map<std::string, std::vector<std::vector<int>>>>();
config.hacks.mips2c_functions_by_name =
hacks_json.at("mips2c_functions_by_name").get<std::unordered_set<std::string>>();
config.hacks.mips2c_jump_table_functions =
hacks_json.at("mips2c_jump_table_functions")
.get<std::unordered_map<std::string, std::vector<int>>>();
for (auto& entry : hacks_json.at("cond_with_else_max_lengths")) {
auto func_name = entry.at(0).get<std::string>();