From b67fba58325223281768d322c4943996e0667719 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 5 Oct 2002 05:44:09 +0000 Subject: [PATCH] *** empty log message *** --- src/main/win32/SDL_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/win32/SDL_main.c b/src/main/win32/SDL_main.c index 4af3bbc98..0da2934b1 100644 --- a/src/main/win32/SDL_main.c +++ b/src/main/win32/SDL_main.c @@ -291,9 +291,9 @@ int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPSTR szCmdLine, int sw) #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);