fix for ActRaiser 2, decrease zoom level limit

This commit is contained in:
dborth 2008-10-29 05:48:40 +00:00
parent a594435e14
commit af6b9beff1
2 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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
}