1
0
Fork 0
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:
fgenesis 2015-08-03 20:32:41 +02:00
parent 9faa503f32
commit 20ee050c7b

View file

@ -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));
}
}
}