(svn r9085) -Codechange/Fix: [win32] Move the initialisation of _codepage (non-UNICODE) to winMain as a dedicated server, or different video driver will not have a win32 messageloop.
authorDarkvater
Sat, 10 Mar 2007 00:29:20 +0000
changeset 6602 391adb618a4c
parent 6601 2fce875cc53b
child 6603 a83fd7ad59d0
(svn r9085) -Codechange/Fix: [win32] Move the initialisation of _codepage (non-UNICODE) to winMain as a dedicated server, or different video driver will not have a win32 messageloop.
src/video/win32_v.cpp
src/win32.cpp
--- a/src/video/win32_v.cpp	Sat Mar 10 00:27:20 2007 +0000
+++ b/src/video/win32_v.cpp	Sat Mar 10 00:29:20 2007 +0000
@@ -214,9 +214,6 @@
 	switch (msg) {
 		case WM_CREATE:
 			SetTimer(hwnd, TID_POLLMOUSE, MOUSE_POLL_DELAY, (TIMERPROC)TrackMouseTimerProc);
-#if !defined(UNICODE)
-			_codepage = GetACP(); // get system codepage as some kind of a default
-#endif /* UNICODE */
 			break;
 
 		case WM_PAINT: {
--- a/src/win32.cpp	Sat Mar 10 00:27:20 2007 +0000
+++ b/src/win32.cpp	Sat Mar 10 00:29:20 2007 +0000
@@ -884,12 +884,16 @@
 	char *argv[64]; // max 64 command line arguments
 	char *cmdline;
 
+#if !defined(UNICODE)
+	_codepage = GetACP(); // get system codepage as some kind of a default
+#endif /* UNICODE */
+
 #if defined(UNICODE)
 	/* For UNICODE we need to convert the commandline to char* _AND_
 	 * save it because argv[] points into this buffer and thus needs to
 	 * be available between subsequent calls to FS2OTTD() */
 	char cmdlinebuf[MAX_PATH];
-#endif
+#endif /* UNICODE */
 
 	cmdline = WIDE_TO_MB_BUFFER(GetCommandLine(), cmdlinebuf, lengthof(cmdlinebuf));