diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2018-02-04 23:06:04 -0500 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2018-02-04 23:06:04 -0500 |
commit | ecfdc57e1cff1fa34ff7edcf7524aeadbc265b69 (patch) | |
tree | 123155f492599caf4597b6fc812a0a064d3962bd /include/gba/macro.h | |
parent | 9776f51f0643a8d988fcd5fc2ac404a7ea285235 (diff) | |
parent | f1f6c7337f4f2f002b456468b0ccc327fc494d02 (diff) |
Merge branch 'master' into fix_nonmatching
Diffstat (limited to 'include/gba/macro.h')
-rw-r--r-- | include/gba/macro.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gba/macro.h b/include/gba/macro.h index d39d10738..ab42c9da3 100644 --- a/include/gba/macro.h +++ b/include/gba/macro.h @@ -105,7 +105,7 @@ #define DmaClearLarge(dmaNum, dest, size, block, bit) \ { \ - const void *_dest = dest; \ + void *_dest = dest; \ u32 _size = size; \ while (1) \ { \ |