summaryrefslogtreecommitdiff
path: root/TemplateFactory.cpp
diff options
context:
space:
mode:
authorKiritoDv <kiritodev01@gmail.com>2024-05-25 16:31:32 -0600
committerKiritoDv <kiritodev01@gmail.com>2024-05-25 16:31:32 -0600
commitafd800afc0bad0dd034eb732354ed25c81621d2e (patch)
tree80c18965e4837af9089f73ff11f8affa36351fde /TemplateFactory.cpp
parent1b06b44e67ec8f63af3cdcecdabf402405ff9493 (diff)
Fixed possible conflicts with LUS
Diffstat (limited to 'TemplateFactory.cpp')
-rw-r--r--TemplateFactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TemplateFactory.cpp b/TemplateFactory.cpp
index 811231b..f17e0f3 100644
--- a/TemplateFactory.cpp
+++ b/TemplateFactory.cpp
@@ -35,7 +35,7 @@ ExportResult TypeBinaryExporter::Export(std::ostream &write, std::shared_ptr<IPa
std::optional<std::shared_ptr<IParsedData>> TypeFactory::parse(std::vector<uint8_t>& buffer, YAML::Node& node) {
auto [root, segment] = Decompressor::AutoDecode(node, buffer, 0x1000);
LUS::BinaryReader reader(segment.data, segment.size);
- reader.SetEndianness(LUS::Endianness::Big);
+ reader.SetEndianness(Torch::Endianness::Big);
return std::make_shared<TypeData>();
}