1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-10-06 06:10:45 +00:00

Show refresh rate in resolution selector

This commit is contained in:
fgenesis 2015-07-12 20:25:46 +02:00
commit 21545e1a24
5 changed files with 17 additions and 10 deletions

View file

@ -2138,7 +2138,7 @@ void Core::enumerateScreenModes()
SDL_GetDisplayMode(0, i, &mode);
if (mode.w && mode.h && (mode.w > mode.h))
{
screenModes.push_back(ScreenMode(i, mode.w, mode.h));
screenModes.push_back(ScreenMode(i, mode.w, mode.h, mode.refresh_rate));
}
}