From 39e32d560cf6721bfc7fa1d368a43c60fc33551c Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 19 Oct 2019 19:22:23 +0200 Subject: [PATCH] - fixed progdir setup. --- source/glbackend/glbackend.cpp | 3 ++- source/platform/win32/winbits.cpp | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/source/glbackend/glbackend.cpp b/source/glbackend/glbackend.cpp index da783174c..508ca7358 100644 --- a/source/glbackend/glbackend.cpp +++ b/source/glbackend/glbackend.cpp @@ -58,7 +58,8 @@ void InitBaseRes() engine_res.reset(FResourceFile::OpenResourceFile(baseres, true, true)); if (!engine_res) { - wm_msgbox("Fatal error", "Engine resources (demolition.pk3) not found"); + FStringf msg("Engine resources (%s) not found", baseres.GetChars()); + wm_msgbox("Fatal error", msg.GetChars()); exit(-1); } } diff --git a/source/platform/win32/winbits.cpp b/source/platform/win32/winbits.cpp index 9ac920118..440e4051a 100644 --- a/source/platform/win32/winbits.cpp +++ b/source/platform/win32/winbits.cpp @@ -131,6 +131,7 @@ int32_t win_buildargs(char **argvbuf) // Figure out what directory the program resides in. progdir = argvbuf[0]; + progdir.Substitute("\\", "/"); auto lastsep = progdir.LastIndexOf('/'); if (lastsep != -1) progdir.Truncate(lastsep + 1);