Rename fix (#75)

Co-authored-by: = <=>
This commit is contained in:
MegaMech
2024-04-06 16:19:48 -06:00
committed by GitHub
co-authored by = <=>
parent 24633ebd7c
commit 2be55fb800
+2 -2
View File
@@ -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) {