summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMegaMech <MegaMech@users.noreply.github.com>2024-04-06 16:19:48 -0600
committerGitHub <noreply@github.com>2024-04-06 16:19:48 -0600
commit2be55fb80025e1762ac5ad0d7b9a6a9c1c8015ee (patch)
tree8c20216bb6972bec48e07f73e81eb6f25f8a52ea
parent24633ebd7cc6866da3e3d06fddc6f0f49a741f1d (diff)
Rename fix (#75)
Co-authored-by: = <=>
-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 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) {