mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-16 23:37:04 +00:00
Remove athena from Runtime, use raw zlib in bintoc rather than gzip
This commit is contained in:
@@ -52,9 +52,9 @@ CCharLayoutNode::CCharLayoutNode(CInputStream& in) : x0_boneMap(in.ReadLong()) {
|
||||
}
|
||||
|
||||
CCharLayoutInfo::CCharLayoutInfo(CInputStream& in) : x0_node(std::make_shared<CCharLayoutNode>(in)), x8_segIdList(in) {
|
||||
const atUint32 mapCount = in.ReadLong();
|
||||
const u32 mapCount = in.ReadLong();
|
||||
|
||||
for (atUint32 i = 0; i < mapCount; ++i) {
|
||||
for (u32 i = 0; i < mapCount; ++i) {
|
||||
std::string key = in.Get<std::string>();
|
||||
x18_segIdMap.emplace(std::move(key), in);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user