summaryrefslogtreecommitdiff
path: root/src/port/Engine.cpp
diff options
context:
space:
mode:
authorinspectredc <78732756+inspectredc@users.noreply.github.com>2025-01-18 16:20:38 +0000
committerGitHub <noreply@github.com>2025-01-18 09:20:38 -0700
commit058b8e9b19aa97044d94d8b3525e8a06c758bba9 (patch)
treea86727422ac684e1b0d7cd0e6d0e045ad1712f95 /src/port/Engine.cpp
parent51d2f2ec97f6de209ba1696257d0ebfc2bbe37ed (diff)
O2R Support (#158)
Co-authored-by: MegaMech <MegaMech@users.noreply.github.com>
Diffstat (limited to 'src/port/Engine.cpp')
-rw-r--r--src/port/Engine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/port/Engine.cpp b/src/port/Engine.cpp
index 23c5dbdbe..fd6db00b4 100644
--- a/src/port/Engine.cpp
+++ b/src/port/Engine.cpp
@@ -42,11 +42,11 @@ GameEngine* GameEngine::Instance;
GameEngine::GameEngine() {
std::vector<std::string> OTRFiles;
- if (const std::string spaghetti_path = Ship::Context::GetPathRelativeToAppDirectory("spaghetti.otr");
+ if (const std::string spaghetti_path = Ship::Context::GetPathRelativeToAppDirectory("spaghetti.o2r");
std::filesystem::exists(spaghetti_path)) {
OTRFiles.push_back(spaghetti_path);
}
- if (const std::string ship_otr_path = Ship::Context::GetPathRelativeToAppBundle("ship.otr");
+ if (const std::string ship_otr_path = Ship::Context::GetPathRelativeToAppBundle("ship.o2r");
std::filesystem::exists(ship_otr_path)) {
OTRFiles.push_back(ship_otr_path);
}