mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-22 10:39:18 +01:00
Changed PAL video back to 528-line mode to prevent vertical cropping. Zelda cheats disabled ready for release.
This commit is contained in:
parent
a2a9290cee
commit
6958b9e6bb
@ -30,7 +30,7 @@
|
||||
#include "gba/bios.h"
|
||||
#include "gba/GBAinline.h"
|
||||
|
||||
#define ALLOWCHEAT
|
||||
//#define ALLOWCHEAT
|
||||
|
||||
u8 ZeldaDxLeftPos = 2, ZeldaDxRightPos = 3, ZeldaDxDownPos = 4;
|
||||
u8 ZeldaDxShieldPos = 5, ZeldaDxSwordPos = 5, ZeldaDxBraceletPos = 5;
|
||||
|
@ -364,7 +364,7 @@ static void SetupVideoMode()
|
||||
vmode = &TVNtsc480Prog;
|
||||
break;
|
||||
case 3: // PAL (50Hz)
|
||||
vmode = &TVPal574IntDfScale;
|
||||
vmode = &TVPal528IntDf;
|
||||
break;
|
||||
case 4: // PAL (60Hz)
|
||||
vmode = &TVEurgb60Hz480IntDf;
|
||||
@ -381,8 +381,8 @@ static void SetupVideoMode()
|
||||
#endif
|
||||
|
||||
// use hardware vertical scaling to fill screen
|
||||
if(vmode->viTVMode >> 2 == VI_PAL)
|
||||
vmode = &TVPal574IntDfScale;
|
||||
//if(vmode->viTVMode >> 2 == VI_PAL)
|
||||
// vmode = &TVPal574IntDfScale;
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user