mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-10-05 17:36:25 +00:00
winmain: Patched to compile on C89 compilers.
This commit is contained in:
@@ -145,8 +145,9 @@ main_getcmdline()
|
||||
cmdalloc = rc + (sizeof (char *) * argc_guess);
|
||||
argv = (char **) VirtualAlloc(NULL, cmdalloc, MEM_RESERVE|MEM_COMMIT, PAGE_READWRITE);
|
||||
if (argv) {
|
||||
int rc2;
|
||||
cmdline = (char *) (argv + argc_guess);
|
||||
const int rc2 = WideCharToMultiByte(CP_UTF8, 0, text, -1, cmdline, rc, NULL, NULL);
|
||||
rc2 = WideCharToMultiByte(CP_UTF8, 0, text, -1, cmdline, rc, NULL, NULL);
|
||||
SDL_assert(rc2 == rc);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user