diff options
author | camthesaxman <cameronghall@cox.net> | 2017-12-22 00:57:31 -0600 |
---|---|---|
committer | camthesaxman <cameronghall@cox.net> | 2017-12-22 00:57:31 -0600 |
commit | 2415720ea6760217355f286da83b9955c881bf1b (patch) | |
tree | 03486998989b00cfcc83d6504a39987c1d4f044e /include/gba/macro.h | |
parent | 71d3e605290b2069d3571478a3736b04d658decb (diff) |
fix 0x2DFC in SaveBlock1
Diffstat (limited to 'include/gba/macro.h')
-rw-r--r-- | include/gba/macro.h | 6 |
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) \ { \ |