locale: Fixed compiler warning on Visual Studio.

This commit is contained in:
Ryan C. Gordon 2020-05-21 03:48:56 -04:00
parent b4e76b58e7
commit ba11122ea0

View File

@ -78,7 +78,7 @@ SDL_SYS_GetPreferredLocales_vista(char *buf, size_t buflen)
if (!pGetUserPreferredUILanguages(MUI_LANGUAGE_NAME, &numlangs, wbuf, &wbuflen)) { if (!pGetUserPreferredUILanguages(MUI_LANGUAGE_NAME, &numlangs, wbuf, &wbuflen)) {
SDL_SYS_GetPreferredLocales_winxp(buf, buflen); /* oh well, try the fallback. */ SDL_SYS_GetPreferredLocales_winxp(buf, buflen); /* oh well, try the fallback. */
} else { } else {
const ULONG endidx = SDL_min(buflen, wbuflen - 1); const ULONG endidx = (ULONG) SDL_min(buflen, wbuflen - 1);
ULONG str_start = 0; ULONG str_start = 0;
ULONG i; ULONG i;
for (i = 0; i < endidx; i++) { for (i = 0; i < endidx; i++) {