1
0

Ensure that absent bone names work

Achieved by refactoring the code to use
`std::optional<std::string>` instead of `core::stringc`.
This commit is contained in:
Lars Mueller
2024-01-31 00:00:40 +01:00
parent 4299ee21d8
commit 6ab23fa848
12 changed files with 69 additions and 91 deletions

View File

@@ -52,7 +52,7 @@ private:
bool readChunkTEXS();
bool readChunkBRUS();
void readString(core::stringc& newstring);
std::string readString();
void readFloats(f32* vec, u32 count);
core::array<SB3dChunk> B3dStack;