mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-22 15:02:20 +00:00
[NEW] Added a quick display fix for PAL 50hz Users.
This commit is contained in:
parent
cbe8627249
commit
27e586c4a3
1 changed files with 7 additions and 0 deletions
|
@ -1104,6 +1104,13 @@ void GRRLIB_Init() {
|
||||||
if (rmode == NULL)
|
if (rmode == NULL)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
// Video Mode Correction
|
||||||
|
switch (rmode->viTVMode) {
|
||||||
|
case VI_DEBUG_PAL: // PAL 50hz 576i
|
||||||
|
rmode = &TVPal574IntDfScale;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
// Widescreen patch by CashMan's Productions (http://www.CashMan-Productions.fr.nf)
|
// Widescreen patch by CashMan's Productions (http://www.CashMan-Productions.fr.nf)
|
||||||
if (CONF_GetAspectRatio() == CONF_ASPECT_16_9) {
|
if (CONF_GetAspectRatio() == CONF_ASPECT_16_9) {
|
||||||
rmode->viWidth = 678;
|
rmode->viWidth = 678;
|
||||||
|
|
Loading…
Reference in a new issue