change hide overscan default

This commit is contained in:
Daryl Borth 2019-01-05 11:07:13 -07:00
parent 5c74b82e7d
commit 8f77b50ccc
2 changed files with 2 additions and 2 deletions

View File

@ -104,7 +104,7 @@ struct SGCSettings
int render; // 0 - original, 1 - filtered, 2 - unfiltered
int videomode; // 0 - automatic, 1 - NTSC (480i), 2 - Progressive (480p), 3 - PAL (50Hz), 4 - PAL (60Hz)
int widescreen;
int hideoverscan;
int hideoverscan; // 0 = off, 1 = vertical, 2 = horizontal, 3 = both
int gamegenie;
int currpal;
int timing;

View File

@ -414,7 +414,7 @@ DefaultSettings ()
GCSettings.gamegenie = 0; // Off
GCSettings.render = 3; // Filtered (sharp)
GCSettings.hideoverscan = 2; // hide both horizontal and vertical
GCSettings.hideoverscan = 1; // hide vertical
GCSettings.widescreen = 0;