mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-15 14:09:06 +00:00
Fix build with SDL1.2 that i accidentally broke
This commit is contained in:
parent
9faa503f32
commit
20ee050c7b
1 changed files with 1 additions and 1 deletions
|
@ -2165,7 +2165,7 @@ void Core::enumerateScreenModes()
|
|||
{
|
||||
if (modes[i]->w > modes[i]->h)
|
||||
{
|
||||
screenModes.push_back(ScreenMode(i, modes[i]->w, modes[i]->h));
|
||||
screenModes.push_back(ScreenMode(i, modes[i]->w, modes[i]->h, 0));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue