summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authororudge <orudge@openttd.org>2009-03-16 20:03:37 +0000
committerorudge <orudge@openttd.org>2009-03-16 20:03:37 +0000
commitbcc870e3f828776d2d909966cd21abc62d9d8609 (patch)
treef256cf59eb791436aadd9e2b0b6de7de961d2790 /src
parentf62e71ba8e3883d0065252d7a293ed293b92c4f5 (diff)
downloadopenttd-bcc870e3f828776d2d909966cd21abc62d9d8609.tar.xz
(svn r15745) -Fix: Resolve compile error in fileio.cpp on OS/2 - base paths on OS/2 behave much like DOS
Diffstat (limited to 'src')
-rw-r--r--src/fileio.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fileio.cpp b/src/fileio.cpp
index 98d58b2fb..79d2283f6 100644
--- a/src/fileio.cpp
+++ b/src/fileio.cpp
@@ -829,7 +829,7 @@ void ChangeWorkingDirectory(const char *exe)
void DetermineBasePaths(const char *exe)
{
char tmp[MAX_PATH];
-#if defined(__MORPHOS__) || defined(__AMIGA__) || defined(DOS) || !defined(WITH_PERSONAL_DIR)
+#if defined(__MORPHOS__) || defined(__AMIGA__) || defined(DOS) || defined(OS2) || !defined(WITH_PERSONAL_DIR)
_searchpaths[SP_PERSONAL_DIR] = NULL;
#else
const char *homedir = getenv("HOME");
@@ -867,7 +867,7 @@ void DetermineBasePaths(const char *exe)
AppendPathSeparator(tmp, MAX_PATH);
_searchpaths[SP_BINARY_DIR] = strdup(tmp);
-#if defined(__MORPHOS__) || defined(__AMIGA__) || defined(DOS)
+#if defined(__MORPHOS__) || defined(__AMIGA__) || defined(DOS) || defined(OS2)
_searchpaths[SP_INSTALLATION_DIR] = NULL;
#else
snprintf(tmp, MAX_PATH, "%s", GLOBAL_DATA_DIR);