From fa363ab5eff205ad22ebfdebbdbb5041b7a04f27 Mon Sep 17 00:00:00 2001 From: Daniel Gibson Date: Sun, 6 Jan 2019 03:51:36 +0100 Subject: [PATCH] Fallback to demo/ should work better now i.e. also when not starting the game with +set fs_basepath /bla/ --- neo/sys/linux/main.cpp | 8 +++++++- neo/sys/win32/win_main.cpp | 10 +++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/neo/sys/linux/main.cpp b/neo/sys/linux/main.cpp index 4c5cd16c..c349b754 100644 --- a/neo/sys/linux/main.cpp +++ b/neo/sys/linux/main.cpp @@ -71,7 +71,13 @@ bool Sys_GetPath(sysPath_t type, idStr &path) { common->Warning("using path of executable: %s", path.c_str()); return true; } else { - path.Clear(); + idStr testPath = path + "/demo/demo00.pk4"; + if(stat(testPath.c_str(), &st) != -1 && S_ISREG(st.st_mode)) { + common->Warning("using path of executable (seems to contain demo game data): %s", path.c_str()); + return true; + } else { + path.Clear(); + } } } diff --git a/neo/sys/win32/win_main.cpp b/neo/sys/win32/win_main.cpp index 5444ab6b..f22040ea 100644 --- a/neo/sys/win32/win_main.cpp +++ b/neo/sys/win32/win_main.cpp @@ -340,8 +340,16 @@ bool Sys_GetPath(sysPath_t type, idStr &path) { s = path; s.AppendPath(BASE_GAMEDIR); - if (_stat(s.c_str(), &st) != -1 && st.st_mode & _S_IFDIR) + if (_stat(s.c_str(), &st) != -1 && (st.st_mode & _S_IFDIR)) { + common->Warning("using path of executable: %s", path.c_str()); return true; + } else { + s = path + "/demo/demo00.pk4"; + if (_stat(s.c_str(), &st) != -1 && (st.st_mode & _S_IFREG)) { + common->Warning("using path of executable (seems to contain demo game data): %s ", path.c_str()); + return true; + } + } common->Warning("base path '%s' does not exist", s.c_str()); }