summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/fileio.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/fileio.cpp b/src/fileio.cpp
index 925eb9c27..f8f4d0d70 100644
--- a/src/fileio.cpp
+++ b/src/fileio.cpp
@@ -874,6 +874,11 @@ void DetermineBasePaths(const char *exe)
AppendPathSeparator(tmp, MAX_PATH);
_searchpaths[SP_BINARY_DIR] = strdup(tmp);
+ if (_searchpaths[SP_WORKING_DIR] != NULL) {
+ /* Go back to the current working directory. */
+ ChangeWorkingDirectory(_searchpaths[SP_WORKING_DIR]);
+ }
+
#if defined(__MORPHOS__) || defined(__AMIGA__) || defined(DOS) || defined(OS2)
_searchpaths[SP_INSTALLATION_DIR] = NULL;
#else