# HG changeset patch # User Sam Lantinga # Date 1033796576 0 # Node ID 8c4a35e3c5079a439c797a3b60ea1c7696a31760 # Parent 2ee72e47ca08a6ff1e35ef65a88e102ee8d09259 Fixed SDL_main.c on Windows CE with applications containing spaces in their names. diff -r 2ee72e47ca08 -r 8c4a35e3c507 src/main/win32/SDL_main.c --- a/src/main/win32/SDL_main.c Sat Oct 05 05:32:49 2002 +0000 +++ b/src/main/win32/SDL_main.c Sat Oct 05 05:42:56 2002 +0000 @@ -291,7 +291,9 @@ #ifdef _WIN32_WCE nLen = wcslen(szCmdLine)+128+1; bufp = (wchar_t *)alloca(nLen*2); - GetModuleFileName(NULL, bufp, 128); + wcscpy (bufp, "\""); + GetModuleFileName(NULL, bufp+1, 128-3); + wcscpy (bufp+wcslen(bufp), "\" "); wcsncpy(bufp+wcslen(bufp), szCmdLine,nLen-wcslen(bufp)); nLen = wcslen(bufp)+1; cmdline = (char *)alloca(nLen);