diff options
| author | KiritoDv <kiritodev01@gmail.com> | 2024-05-25 16:31:32 -0600 |
|---|---|---|
| committer | KiritoDv <kiritodev01@gmail.com> | 2024-05-25 16:31:32 -0600 |
| commit | afd800afc0bad0dd034eb732354ed25c81621d2e (patch) | |
| tree | 80c18965e4837af9089f73ff11f8affa36351fde /src/factories/BaseFactory.cpp | |
| parent | 1b06b44e67ec8f63af3cdcecdabf402405ff9493 (diff) | |
Fixed possible conflicts with LUS
Diffstat (limited to 'src/factories/BaseFactory.cpp')
| -rw-r--r-- | src/factories/BaseFactory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/factories/BaseFactory.cpp b/src/factories/BaseFactory.cpp index ba84109..b5050ea 100644 --- a/src/factories/BaseFactory.cpp +++ b/src/factories/BaseFactory.cpp @@ -1,7 +1,7 @@ #include "BaseFactory.h" -void BaseExporter::WriteHeader(LUS::BinaryWriter &writer, LUS::ResourceType resType, int32_t version) { - writer.Write((int8_t)(LUS::Endianness::Native)); // 0x00 - Endianness +void BaseExporter::WriteHeader(LUS::BinaryWriter &writer, Torch::ResourceType resType, int32_t version) { + writer.Write((int8_t)(Torch::Endianness::Native)); // 0x00 - Endianness writer.Write((int8_t)0); // 0x01 - Is Asset Custom writer.Write((int8_t)0); // 0x02 - writer.Write((int8_t)0); // 0x03 |
