be a bit more flexible with the display frequencies we'll match

This commit is contained in:
Ian Curtis 2022-12-19 14:11:21 +00:00
parent 25604512f4
commit ad0aed42a4

View file

@ -201,8 +201,9 @@ static void SetFullScreenRefreshRate()
return; return;
} }
if (SDL_BITSPERPIXEL(mode.format) >= 24 && mode.refresh_rate == 58 && mode.w == totalXRes && mode.h == totalYRes) { if (SDL_BITSPERPIXEL(mode.format) >= 24 && mode.w == totalXRes && mode.h == totalYRes) {
int result = SDL_SetWindowDisplayMode(s_window, &mode); if (mode.refresh_rate == 57 || mode.refresh_rate == 58) { // nvidia is fairly flexible in what refresh rate windows will show, so we can match either 57 or 58,
int result = SDL_SetWindowDisplayMode(s_window, &mode); // both are totally non standard frequencies and shouldn't be set incorrectly
if (result == 0) { if (result == 0) {
printf("Custom fullscreen mode set: %ix%i@57.524 Hz\n", mode.w, mode.h); printf("Custom fullscreen mode set: %ix%i@57.524 Hz\n", mode.w, mode.h);
} }
@ -210,6 +211,7 @@ static void SetFullScreenRefreshRate()
} }
} }
} }
}
} }
/* /*