Commit e974ccf8284f5931ed41176daac975c15a0513a7

Ryan C. Gordon 2015-02-19T21:49:30

Windows: Added a FIXME.

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/src/main/windows/SDL_windows_main.c b/src/main/windows/SDL_windows_main.c
index dc51dc0..eac904e 100644
--- a/src/main/windows/SDL_windows_main.c
+++ b/src/main/windows/SDL_windows_main.c
@@ -164,6 +164,7 @@ WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPSTR szCmdLine, int sw)
 #if UNICODE
     cmdline = WIN_StringToUTF8(text);
 #else
+    /* !!! FIXME: are these in the system codepage? We need to convert to UTF-8. */
     cmdline = SDL_strdup(text);
 #endif
     if (cmdline == NULL) {