mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-01 00:15:14 +01:00
fix for ActRaiser 2, decrease zoom level limit
This commit is contained in:
parent
a594435e14
commit
af6b9beff1
@ -74,7 +74,7 @@ DefaultSettings ()
|
||||
Settings.SuperScopeMaster = false;
|
||||
Settings.MultiPlayer5Master = false;
|
||||
Settings.JustifierMaster = false;
|
||||
Settings.ShutdownMaster = false;
|
||||
Settings.ShutdownMaster = true; // needs to be on for ActRaiser 2
|
||||
Settings.ApplyCheats = true;
|
||||
|
||||
Settings.BlockInvalidVRAMAccess = true;
|
||||
|
@ -818,8 +818,8 @@ zoom (float speed)
|
||||
|
||||
if (GCSettings.ZoomLevel < 0.5)
|
||||
GCSettings.ZoomLevel = 0.5;
|
||||
else if (GCSettings.ZoomLevel > 10.0)
|
||||
GCSettings.ZoomLevel = 10.0;
|
||||
else if (GCSettings.ZoomLevel > 2.0)
|
||||
GCSettings.ZoomLevel = 2.0;
|
||||
|
||||
oldvheight = 0; // update video
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user