Skip to content

Commit

Permalink
Fixed Windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jul 5, 2007
1 parent bc268ce commit 0fa2086
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/wincommon/SDL_sysevents.c
Expand Up @@ -815,7 +815,7 @@ int SDL_RegisterApp(char *name, Uint32 style, void *hInst)
/* WinCE uses the UNICODE version */
SDL_Appname = SDL_iconv_utf8_ucs2(name);
#else
SDL_Appname = SDL_iconv_utf8_latin1(name);
SDL_Appname = SDL_iconv_utf8_locale(name);
#endif /* _WIN32_WCE */
SDL_Appstyle = style;
SDL_Instance = hInst ? hInst : SDL_GetModuleHandle();
Expand Down

0 comments on commit 0fa2086

Please sign in to comment.