changeset 505:6b34c9dcf74c

*** empty log message ***
author Sam Lantinga <slouken@libsdl.org>
date Sat, 05 Oct 2002 05:44:09 +0000
parents 8c4a35e3c507
children f097dba83975
files src/main/win32/SDL_main.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/main/win32/SDL_main.c	Sat Oct 05 05:42:56 2002 +0000
+++ b/src/main/win32/SDL_main.c	Sat Oct 05 05:44:09 2002 +0000
@@ -291,9 +291,9 @@
 #ifdef _WIN32_WCE
 	nLen = wcslen(szCmdLine)+128+1;
 	bufp = (wchar_t *)alloca(nLen*2);
-	wcscpy (bufp, "\"");
+	wcscpy (bufp, TEXT("\""));
 	GetModuleFileName(NULL, bufp+1, 128-3);
-	wcscpy (bufp+wcslen(bufp), "\" ");
+	wcscpy (bufp+wcslen(bufp), TEXT("\" "));
 	wcsncpy(bufp+wcslen(bufp), szCmdLine,nLen-wcslen(bufp));
 	nLen = wcslen(bufp)+1;
 	cmdline = (char *)alloca(nLen);