From 2be55fb80025e1762ac5ad0d7b9a6a9c1c8015ee Mon Sep 17 00:00:00 2001 From: MegaMech Date: Sat, 6 Apr 2024 16:19:48 -0600 Subject: Rename fix (#75) Co-authored-by: = <=> --- src/factories/mk64/DrivingBehaviour.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/factories/mk64/DrivingBehaviour.cpp b/src/factories/mk64/DrivingBehaviour.cpp index 80d31d0..c6af5ce 100644 --- a/src/factories/mk64/DrivingBehaviour.cpp +++ b/src/factories/mk64/DrivingBehaviour.cpp @@ -15,7 +15,7 @@ ExportResult MK64::DrivingBehaviourHeaderExporter::Export(std::ostream &write, s return std::nullopt; } - write << "extern CPUBehaviour " << symbol << "[];\n"; + write << "extern KartAIBehaviour " << symbol << "[];\n"; return std::nullopt; } @@ -35,7 +35,7 @@ ExportResult MK64::DrivingBehaviourCodeExporter::Export(std::ostream &write, std write << "// 0x" << std::hex << std::uppercase << offset << "\n"; } - write << "CPUBehaviour " << symbol << "[] = {\n"; + write << "KartAIBehaviour " << symbol << "[] = {\n"; for(auto b : bhv->mBhvs) { -- cgit v1.2.3