Skip to content

Commit 194874f

Browse files
committed
increase max zoom to 1.6 for GB/GBA
1 parent 9655bf6 commit 194874f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/preferences.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -596,13 +596,13 @@ void FixInvalidSettings()
596596
GCSettings.LoadMethod = DEVICE_AUTO;
597597
if(GCSettings.SaveMethod > 7)
598598
GCSettings.SaveMethod = DEVICE_AUTO;
599-
if(!(GCSettings.gbaZoomHor > 0.5 && GCSettings.gbaZoomHor < 1.5))
599+
if(!(GCSettings.gbaZoomHor >= 0.5 && GCSettings.gbaZoomHor <= 1.6))
600600
GCSettings.gbaZoomHor = 1.0;
601-
if(!(GCSettings.gbaZoomVert > 0.5 && GCSettings.gbaZoomVert < 1.5))
601+
if(!(GCSettings.gbaZoomVert >= 0.5 && GCSettings.gbaZoomVert <= 1.6))
602602
GCSettings.gbaZoomVert = 1.0;
603-
if(!(GCSettings.gbZoomHor > 0.5 && GCSettings.gbZoomHor < 1.5))
603+
if(!(GCSettings.gbZoomHor >= 0.5 && GCSettings.gbZoomHor <= 1.6))
604604
GCSettings.gbZoomHor = 1.0;
605-
if(!(GCSettings.gbZoomVert > 0.5 && GCSettings.gbZoomVert < 1.5))
605+
if(!(GCSettings.gbZoomVert >= 0.5 && GCSettings.gbZoomVert <= 1.6))
606606
GCSettings.gbZoomVert = 1.0;
607607
if(!(GCSettings.xshift > -50 && GCSettings.xshift < 50))
608608
GCSettings.xshift = 0;

0 commit comments

Comments
 (0)