diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2018-01-17 18:10:16 -0500 |
---|---|---|
committer | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2018-01-17 18:10:16 -0500 |
commit | 093422f3065ed47db9a475b0c9d67e9c5bc2c364 (patch) | |
tree | bec49668a402710415eba8a9eb8978b64fcec445 /src/pokemon/mon_markings.c | |
parent | f07cdb4c9723bdbb1fcdbbe622d39936ae5b532f (diff) |
use dma macros for remaining missing dma while(1) loops
Diffstat (limited to 'src/pokemon/mon_markings.c')
-rw-r--r-- | src/pokemon/mon_markings.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/pokemon/mon_markings.c b/src/pokemon/mon_markings.c index 3734856b8..66c82a706 100644 --- a/src/pokemon/mon_markings.c +++ b/src/pokemon/mon_markings.c @@ -631,6 +631,5 @@ struct Sprite *sub_80F7960(u16 tileTag, u16 paletteTag, const u16 *palette, u16 void sub_80F7A10(u8 markings, void *dest) { - const void *src = gUnknown_083E4A14 + markings * 0x80; - DmaCopy16(3, src, dest, 0x80); + DmaCopy16Defvars(3, gUnknown_083E4A14 + markings * 0x80, dest, 0x80); } |