summaryrefslogtreecommitdiff
path: root/src/mon_markings.c
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@gmail.com>2020-04-10 15:57:08 -0400
committerPikalaxALT <PikalaxALT@gmail.com>2020-04-10 15:57:08 -0400
commita205881ce2caa89a1b2690df9bd335201df2aeda (patch)
tree8e0c2822030d5985475f86c4286ea923ac9bc71d /src/mon_markings.c
parentb22d3a821d8656d9fb88000ce02e5b885a59e1c3 (diff)
Comment dma3 methods and create DMA3_*BIT macros
Diffstat (limited to 'src/mon_markings.c')
-rw-r--r--src/mon_markings.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mon_markings.c b/src/mon_markings.c
index feb8a255a..7e44a77b0 100644
--- a/src/mon_markings.c
+++ b/src/mon_markings.c
@@ -507,8 +507,8 @@ static struct Sprite * CreateMonMarkingSprite(u16 tileTag, u16 paletteTag, const
return NULL;
}
-void sub_80BEBD0(u8 markings, void * dest)
+void RequestDma3LoadMonMarking(u8 markings, void * dest)
{
- RequestDma3Copy(&sMonMarkingsTiles[64 * markings], dest, 0x80, 1);
+ RequestDma3Copy(&sMonMarkingsTiles[64 * markings], dest, 0x80, DMA3_32BIT);
}