diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2018-05-07 18:18:00 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2018-05-07 18:18:00 -0400 |
commit | fd1d75ce378aba3148a1fe9882e17c8cc790d5c2 (patch) | |
tree | c8738398572990b0166c268d0eb32439db6eb702 /src/bg.c | |
parent | 61cc1d55743715a64e793187f63d0f1f7a80b0e0 (diff) | |
parent | f14d2765da6f01eccb08967fd6b22c3bdef2be98 (diff) |
Merge branch 'master' into mauville_old_man
Diffstat (limited to 'src/bg.c')
-rw-r--r-- | src/bg.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -965,9 +965,9 @@ void CopyBgTilemapBufferToVram(u8 bg) } } -void CopyToBgTilemapBufferRect(u8 bg, void* src, u8 destX, u8 destY, u8 width, u8 height) +void CopyToBgTilemapBufferRect(u8 bg, const void* src, u8 destX, u8 destY, u8 width, u8 height) { - void* srcCopy; + const void* srcCopy; u16 destX16; u16 destY16; u16 mode; |