summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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) {