summaryrefslogtreecommitdiff
path: root/src/bg.c
diff options
context:
space:
mode:
authorSlawter666 <38655737+Slawter666@users.noreply.github.com>2018-05-05 18:50:26 +0100
committerSlawter666 <38655737+Slawter666@users.noreply.github.com>2018-05-05 18:50:26 +0100
commit22ec43a6eddfc63bbb1f9a883c7b1cdda05f0d64 (patch)
treeb5d33877dbe736022815a40c6ff2af3977e36d77 /src/bg.c
parent39fd42faeadeb73bf57018f69a6d69463635847a (diff)
parent83ea8d0cd9f8141181d09718c79b8916df945752 (diff)
resolve merge conflicts
Diffstat (limited to 'src/bg.c')
-rw-r--r--src/bg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bg.c b/src/bg.c
index 22861b64d..975c72a94 100644
--- a/src/bg.c
+++ b/src/bg.c
@@ -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;