From a205881ce2caa89a1b2690df9bd335201df2aeda Mon Sep 17 00:00:00 2001 From: PikalaxALT Date: Fri, 10 Apr 2020 15:57:08 -0400 Subject: Comment dma3 methods and create DMA3_*BIT macros --- src/union_room_chat_display.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/union_room_chat_display.c') diff --git a/src/union_room_chat_display.c b/src/union_room_chat_display.c index 54aef8d65..008b86e7e 100644 --- a/src/union_room_chat_display.c +++ b/src/union_room_chat_display.c @@ -1252,7 +1252,7 @@ static void SetBgTilemapWorkBuffers(void) static void ClearBg0(void) { - RequestDma3Fill(0, (void *)BG_CHAR_ADDR(0), 0x20, 1); + RequestDma3Fill(0, (void *)BG_CHAR_ADDR(0), 0x20, DMA3_32BIT); FillBgTilemapBufferRect_Palette0(0, 0, 0, 0, 32, 32); CopyBgTilemapBufferToVram(0); } @@ -1279,7 +1279,7 @@ static void LoadLinkMiscMenuGfx(void) static void LoadBg1Pal8(void) { LoadPalette(sBg1Pal8, 0x80, 0x20); - RequestDma3Fill(0, (void *)BG_CHAR_ADDR(1) + 0x20, 0x20, 1); + RequestDma3Fill(0, (void *)BG_CHAR_ADDR(1) + 0x20, 0x20, DMA3_32BIT); } static void LoadWin0(void) -- cgit v1.2.3