summaryrefslogtreecommitdiff
path: root/src/win32.cpp
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2007-02-27 16:05:49 +0000
committerDarkvater <darkvater@openttd.org>2007-02-27 16:05:49 +0000
commitc5e59b8a6156cf84d576f77849adcfcc2cd04f99 (patch)
treec32359cb0544d7f76ee949975bb1f0e3b941dc7a /src/win32.cpp
parent9cbc0e4adea4402426444bcea7fa1fccc3755f86 (diff)
downloadopenttd-c5e59b8a6156cf84d576f77849adcfcc2cd04f99.tar.xz
(svn r8919) -Regression (UTF8) (try #2): Win9x is very picky about trailing slashes in paths, so C:\\* will not work (but C:\Windows\\* does; go figure). Thanks glx for pointing it out and for the initial fix.
Diffstat (limited to 'src/win32.cpp')
-rw-r--r--src/win32.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/win32.cpp b/src/win32.cpp
index dceda5e86..b59621aa6 100644
--- a/src/win32.cpp
+++ b/src/win32.cpp
@@ -665,8 +665,11 @@ DIR *opendir(const wchar_t *path)
d = dir_calloc();
if (d != NULL) {
wchar_t search_path[MAX_PATH];
- /* build search path for FindFirstFile */
- _snwprintf(search_path, lengthof(search_path), L"%s\\*", path);
+ bool slash = path[wcslen(path) - 1] == L'\\';
+
+ /* build search path for FindFirstFile, try not to append additional slashes
+ * as it throws Win9x off its groove for root directories */
+ _snwprintf(search_path, lengthof(search_path), L"%s%s*", path, slash ? L"" : L"\\");
*lastof(search_path) = '\0';
d->hFind = FindFirstFileW(search_path, &d->fd);