aboutsummaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorEugene Sandulenko2006-02-12 13:12:49 +0000
committerEugene Sandulenko2006-02-12 13:12:49 +0000
commit609d185739b27a69fe29247f3e272515fd147f08 (patch)
treef5fbb9946e0f85a8d55715d4641ab0f1e9c8c0ca /base
parent92cfa0aa68fadaff1498d347f7dd2e8121f73ae9 (diff)
downloadscummvm-rg350-609d185739b27a69fe29247f3e272515fd147f08.tar.gz
scummvm-rg350-609d185739b27a69fe29247f3e272515fd147f08.tar.bz2
scummvm-rg350-609d185739b27a69fe29247f3e272515fd147f08.zip
Another spot of non-standard "#else if" replaced by "#elif"
svn-id: r20608
Diffstat (limited to 'base')
-rw-r--r--base/gameDetector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/gameDetector.cpp b/base/gameDetector.cpp
index bb201491ac..33a4a7c711 100644
--- a/base/gameDetector.cpp
+++ b/base/gameDetector.cpp
@@ -203,7 +203,7 @@ GameDetector::GameDetector() {
ConfMan.registerDefault("savepath", savePath);
}
}
-#else if defined(__SYMBIAN32__)
+#elif defined(__SYMBIAN32__)
strcpy(savePath, Symbian::GetExecutablePath());
strcat(savePath, DEFAULT_SAVE_PATH);
struct stat sb;