summaryrefslogtreecommitdiff
path: root/src/factories/mk64/DrivingBehaviour.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/factories/mk64/DrivingBehaviour.cpp')
-rw-r--r--src/factories/mk64/DrivingBehaviour.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/factories/mk64/DrivingBehaviour.cpp b/src/factories/mk64/DrivingBehaviour.cpp
index 2be093a..85b5ca0 100644
--- a/src/factories/mk64/DrivingBehaviour.cpp
+++ b/src/factories/mk64/DrivingBehaviour.cpp
@@ -62,7 +62,7 @@ ExportResult MK64::DrivingBehaviourBinaryExporter::Export(std::ostream &write, s
auto bhv = std::static_pointer_cast<DrivingData>(raw);
auto writer = LUS::BinaryWriter();
- WriteHeader(writer, LUS::ResourceType::DrivingBehaviour, 0);
+ WriteHeader(writer, Torch::ResourceType::DrivingBehaviour, 0);
writer.Write((uint32_t) bhv->mBhvs.size());
for(auto b : bhv->mBhvs) {
writer.Write(b.waypoint1);
@@ -78,7 +78,7 @@ std::optional<std::shared_ptr<IParsedData>> MK64::DrivingBehaviourFactory::parse
auto [_, segment] = Decompressor::AutoDecode(node, buffer);
LUS::BinaryReader reader(segment.data, segment.size);
- reader.SetEndianness(LUS::Endianness::Big);
+ reader.SetEndianness(Torch::Endianness::Big);
std::vector<BhvRaw> behaviours;
while(1) {