diff options
| author | camthesaxman <cameronghall@cox.net> | 2017-05-10 16:53:14 -0500 | 
|---|---|---|
| committer | camthesaxman <cameronghall@cox.net> | 2017-05-10 16:53:14 -0500 | 
| commit | 32153295edc1e93bd27894f75f2ab01f9140bed5 (patch) | |
| tree | 397bb2852fbacc95b66a2b121c0a7eeb31c5c44d /src/credits.c | |
| parent | e78f49f1efc2eadb674d00c00ffc9a4018b3cdbd (diff) | |
| parent | 242af849cb56ce0c4469c4e2be82a3ad5dbd3434 (diff) | |
Merge remote-tracking branch 'upstream/master' into decompile_battle_2
Diffstat (limited to 'src/credits.c')
| -rw-r--r-- | src/credits.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/src/credits.c b/src/credits.c index 17d3507aa..01af78bce 100644 --- a/src/credits.c +++ b/src/credits.c @@ -474,8 +474,8 @@ void task_a_8143D04(u8 taskIdA)          BeginNormalPaletteFade(-1, 0, 16, 0, 0);          REG_BG3HOFS = 0;          REG_BG3VOFS = 32; -        REG_BG3CNT = 0x703; -        REG_DISPCNT = 0x1940; +        REG_BG3CNT = BGCNT_PRIORITY(3) | BGCNT_CHARBASE(0) | BGCNT_SCREENBASE(7) | BGCNT_16COLOR | BGCNT_TXT256x256; +        REG_DISPCNT = DISPCNT_MODE_0 | DISPCNT_OBJ_1D_MAP | DISPCNT_BG0_ON | DISPCNT_BG3_ON | DISPCNT_OBJ_ON;          gMain.state = 0;          gUnknown_0203935C = 0; @@ -518,13 +518,13 @@ static void task_a_8143F3C(u8 taskIdA)      FreeAllSpritePalettes();      BeginNormalPaletteFade(-1, 8, 16, 0, 0); -    REG_BG0CNT = 0x700; +    REG_BG0CNT = BGCNT_PRIORITY(0) | BGCNT_CHARBASE(0) | BGCNT_SCREENBASE(7) | BGCNT_16COLOR | BGCNT_TXT256x256;      backup = REG_IME;      REG_IME = 0;      REG_IE |= INTR_FLAG_VBLANK;      REG_IME = backup;      REG_DISPSTAT |= DISPSTAT_VBLANK_INTR; -    REG_DISPCNT = 0x140; +    REG_DISPCNT = DISPCNT_MODE_0 | DISPCNT_OBJ_1D_MAP | DISPCNT_BG0_ON;      gTasks[taskIdA].data[TDA_0] = 0x100;      gTasks[taskIdA].func = task_a_8143FDC; | 
