summaryrefslogtreecommitdiff
path: root/src/win32.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-04-18 04:54:09 +0000
committerrubidium <rubidium@openttd.org>2008-04-18 04:54:09 +0000
commitacafc26426f7725d519815ea25d6edddc67b3fa2 (patch)
treed7125c8c858791939606b0bc9eec620bb3d141d9 /src/win32.cpp
parent9d8fa486af824039fae197212d83365242511da5 (diff)
downloadopenttd-acafc26426f7725d519815ea25d6edddc67b3fa2.tar.xz
(svn r12762) -Fix: tabs after the first non-tab character are generally not okay (or lines starting with a space and then tabs).
Diffstat (limited to 'src/win32.cpp')
-rw-r--r--src/win32.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/win32.cpp b/src/win32.cpp
index 3aad60434..741823877 100644
--- a/src/win32.cpp
+++ b/src/win32.cpp
@@ -1021,7 +1021,7 @@ void GetCurrentDirectoryW(int length, wchar_t *path)
char *getcwd(char *buf, size_t size)
{
#if defined(WINCE)
- TCHAR path[MAX_PATH];
+ TCHAR path[MAX_PATH];
GetModuleFileName(NULL, path, MAX_PATH);
convert_from_fs(path, buf, size);
/* GetModuleFileName returns dir with file, so remove everything behind latest '\\' */