summaryrefslogtreecommitdiff
path: root/include/gba/macro.h
diff options
context:
space:
mode:
authorcamthesaxman <cameronghall@cox.net>2017-12-22 00:57:31 -0600
committercamthesaxman <cameronghall@cox.net>2017-12-22 00:57:31 -0600
commit2415720ea6760217355f286da83b9955c881bf1b (patch)
tree03486998989b00cfcc83d6504a39987c1d4f044e /include/gba/macro.h
parent71d3e605290b2069d3571478a3736b04d658decb (diff)
fix 0x2DFC in SaveBlock1
Diffstat (limited to 'include/gba/macro.h')
-rw-r--r--include/gba/macro.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/gba/macro.h b/include/gba/macro.h
index d9d10c0a9..d9e6739b3 100644
--- a/include/gba/macro.h
+++ b/include/gba/macro.h
@@ -86,8 +86,8 @@
#define DmaCopyLarge(dmaNum, src, dest, size, block, bit) \
{ \
- const u8 *_src = src; \
- u8 *_dest = dest; \
+ const void *_src = src; \
+ void *_dest = dest; \
u32 _size = size; \
while (1) \
{ \
@@ -105,7 +105,7 @@
#define DmaClearLarge(dmaNum, dest, size, block, bit) \
{ \
- const u8 *_dest = dest; \
+ const void *_dest = dest; \
u32 _size = size; \
while (1) \
{ \