Forgot to fix an if.

This commit is contained in:
The Dax 2013-07-30 03:43:43 -04:00
parent c916d4ad99
commit 8318eefcf1

View file

@ -753,7 +753,7 @@ namespace MainWindow
break;
case ID_OPTIONS_SCREENDUMMY:
g_Config.iWindowZoom = ++g_Config.iWindowZoom > 4 ? 1 : g_Config.iWindowZoom;
g_Config.iWindowZoom = ++g_Config.iWindowZoom > ZOOM_MAX ? 1 : g_Config.iWindowZoom;
setZoom(g_Config.iWindowZoom);
break;