summaryrefslogtreecommitdiff
path: root/src/stdafx.h
diff options
context:
space:
mode:
authormichi_cc <michi_cc@openttd.org>2013-08-05 20:36:47 +0000
committermichi_cc <michi_cc@openttd.org>2013-08-05 20:36:47 +0000
commite3648455aa6dba0954c872389f7c7ee3a9a99676 (patch)
tree3fd72c54d3e6e586e9a74fc93aa08996e7eaba6c /src/stdafx.h
parente37968aadd8c14d15d49b90754a69126bdf674e7 (diff)
downloadopenttd-e3648455aa6dba0954c872389f7c7ee3a9a99676.tar.xz
(svn r25674) -Fix: [Win32] The console code page for non-Unicode builds is not the normal ANSI code page and definitely not UTF-8 either.
Diffstat (limited to 'src/stdafx.h')
-rw-r--r--src/stdafx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdafx.h b/src/stdafx.h
index b91466403..d38e2b242 100644
--- a/src/stdafx.h
+++ b/src/stdafx.h
@@ -287,7 +287,7 @@
#endif /* WINCE */
const char *FS2OTTD(const TCHAR *name);
- const TCHAR *OTTD2FS(const char *name);
+ const TCHAR *OTTD2FS(const char *name, bool console_cp = false);
#define SQ2OTTD(name) FS2OTTD(name)
#define OTTD2SQ(name) OTTD2FS(name)
#else