mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 06:55:05 +01:00
set widescreen by default when in 16:9 mode
This commit is contained in:
parent
3a717e9a79
commit
5c74b82e7d
@ -416,7 +416,13 @@ DefaultSettings ()
|
||||
GCSettings.render = 3; // Filtered (sharp)
|
||||
GCSettings.hideoverscan = 2; // hide both horizontal and vertical
|
||||
|
||||
GCSettings.widescreen = 1; // aspect ratio correction
|
||||
GCSettings.widescreen = 0;
|
||||
|
||||
#ifdef HW_RVL
|
||||
if (CONF_GetAspectRatio() == CONF_ASPECT_16_9)
|
||||
GCSettings.widescreen = 1;
|
||||
#endif
|
||||
|
||||
GCSettings.zoomHor = 1.0; // horizontal zoom level
|
||||
GCSettings.zoomVert = 1.0; // vertical zoom level
|
||||
GCSettings.xshift = 0; // horizontal video shift
|
||||
|
Loading…
Reference in New Issue
Block a user