wayland: Minor fix for old compilers

main
Ethan Lee 2022-03-28 15:32:30 -04:00
parent 4d76c9cb46
commit d875416ac4
1 changed files with 2 additions and 1 deletions

View File

@ -423,6 +423,7 @@ AddEmulatedModes(SDL_VideoDisplay *dpy, SDL_bool rot_90)
{ 640, 350 }
};
int i;
const struct EmulatedMode *mode_list = NULL;
int mode_list_size;
const int native_width = (float)dpy->display_modes->w;
@ -442,7 +443,7 @@ AddEmulatedModes(SDL_VideoDisplay *dpy, SDL_bool rot_90)
return; /* Some weird aspect we don't support */
}
for (int i = 0; i < mode_list_size; ++i) {
for (i = 0; i < mode_list_size; ++i) {
/* Only add modes that are smaller than the native mode */
if ((mode_list[i].w < native_width && mode_list[i].h < native_height) ||
(mode_list[i].w < native_width && mode_list[i].h == native_height)) {