aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/module/ModuleInit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/module/ModuleInit.cpp')
-rw-r--r--src/core/module/ModuleInit.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/module/ModuleInit.cpp b/src/core/module/ModuleInit.cpp
index 8a7516a1..ceb5987e 100644
--- a/src/core/module/ModuleInit.cpp
+++ b/src/core/module/ModuleInit.cpp
@@ -53,8 +53,10 @@ auto LoadIntegratedMods() -> bool {
auto exec_binary_path = QCoreApplication::applicationDirPath();
#if defined(MACOS) && defined(RELEASE)
- auto mods_path = exec_binary_path + "../PlugIns/mods";
+ // App Bundle
+ auto mods_path = exec_binary_path + "/../PlugIns/mods";
#else
+ // Debug Or Windows Platform
auto mods_path = exec_binary_path + "/mods";
#endif