1
0
mirror of https://github.com/blupi-games/planetblupi synced 2024-12-30 10:15:36 +01:00

Fix warning (bad assignment)

This commit is contained in:
Mathieu Schroeter 2018-06-29 00:27:08 +02:00
parent 7032a42f43
commit 278e52db45

View File

@ -4262,7 +4262,7 @@ CEvent::ChangeButtons (Sint32 message)
case EV_BUTTON3:
{
auto zoom = g_zoom;
g_zoom = g_settingsOverload & SETTING_LEGACY ? g_zoom = 2 : 1;
g_zoom = g_settingsOverload & SETTING_LEGACY ? 2 : 1;
SetFullScreen (true, zoom);
break;
}