You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// uppercase ASCII chars in environment variable names on Windows, since the system environment table is case-insensitive.
123
+
for (char*ptr=variable; *ptr; ptr++) {
124
+
*ptr=SDL_toupper(*ptr); // the only UTF-8 bytes that don't have the high-bit set are single-byte ASCII chars, so SDL_toupper will leave multichar stuff alone.
// uppercase ASCII chars in environment variable names on Windows, since the system environment table is case-insensitive.
153
+
for (char*ptr=variable; *ptr; ptr++) {
154
+
*ptr=SDL_toupper(*ptr); // the only UTF-8 bytes that don't have the high-bit set are single-byte ASCII chars, so SDL_toupper will leave multichar stuff alone.
0 commit comments