File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -596,13 +596,13 @@ void FixInvalidSettings()
596
596
GCSettings.LoadMethod = DEVICE_AUTO;
597
597
if (GCSettings.SaveMethod > 7 )
598
598
GCSettings.SaveMethod = DEVICE_AUTO;
599
- if (!(GCSettings.gbaZoomHor > 0.5 && GCSettings.gbaZoomHor < 1.5 ))
599
+ if (!(GCSettings.gbaZoomHor >= 0.5 && GCSettings.gbaZoomHor <= 1.6 ))
600
600
GCSettings.gbaZoomHor = 1.0 ;
601
- if (!(GCSettings.gbaZoomVert > 0.5 && GCSettings.gbaZoomVert < 1.5 ))
601
+ if (!(GCSettings.gbaZoomVert >= 0.5 && GCSettings.gbaZoomVert <= 1.6 ))
602
602
GCSettings.gbaZoomVert = 1.0 ;
603
- if (!(GCSettings.gbZoomHor > 0.5 && GCSettings.gbZoomHor < 1.5 ))
603
+ if (!(GCSettings.gbZoomHor >= 0.5 && GCSettings.gbZoomHor <= 1.6 ))
604
604
GCSettings.gbZoomHor = 1.0 ;
605
- if (!(GCSettings.gbZoomVert > 0.5 && GCSettings.gbZoomVert < 1.5 ))
605
+ if (!(GCSettings.gbZoomVert >= 0.5 && GCSettings.gbZoomVert <= 1.6 ))
606
606
GCSettings.gbZoomVert = 1.0 ;
607
607
if (!(GCSettings.xshift > -50 && GCSettings.xshift < 50 ))
608
608
GCSettings.xshift = 0 ;
You can’t perform that action at this time.
0 commit comments