summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKiritoDv <kiritodev01@gmail.com>2024-03-13 10:21:41 -0600
committerKiritoDv <kiritodev01@gmail.com>2024-03-13 10:21:41 -0600
commit2338cab8df24d483a4a1eaf8bd23a997a4beffb8 (patch)
tree3efb75ac92989c491c927a714080c03c68bef513
parent88ed46a8409a03667526a56481c9a5037afede95 (diff)
Renamed some mk64 factories
-rw-r--r--src/Companion.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Companion.cpp b/src/Companion.cpp
index ca37323..5ae17ee 100644
--- a/src/Companion.cpp
+++ b/src/Companion.cpp
@@ -68,10 +68,10 @@ void Companion::Init(const ExportType type) {
this->RegisterFactory("SM64:GEO_LAYOUT", std::make_shared<SM64::GeoLayoutFactory>());
// MK64 specific
- this->RegisterFactory("MK64:COURSEVTX", std::make_shared<MK64::CourseVtxFactory>());
- this->RegisterFactory("MK64:TRACKWAYPOINTS", std::make_shared<MK64::WaypointsFactory>());
- this->RegisterFactory("MK64:TRACKSECTIONS", std::make_shared<MK64::TrackSectionsFactory>());
- this->RegisterFactory("MK64:SPAWNDATA", std::make_shared<MK64::SpawnDataFactory>());
+ this->RegisterFactory("MK64:COURSE_VTX", std::make_shared<MK64::CourseVtxFactory>());
+ this->RegisterFactory("MK64:TRACK_WAYPOINTS", std::make_shared<MK64::WaypointsFactory>());
+ this->RegisterFactory("MK64:TRACK_SECTIONS", std::make_shared<MK64::TrackSectionsFactory>());
+ this->RegisterFactory("MK64:SPAWN_DATA", std::make_shared<MK64::SpawnDataFactory>());
// SF64 specific
this->RegisterFactory("SF64:ANIM", std::make_shared<SF64::AnimFactory>());