summaryrefslogtreecommitdiff
path: root/src/window.c
diff options
context:
space:
mode:
authorgolem galvanize <golemgalvanize@github.com>2018-02-07 19:31:33 -0500
committergolem galvanize <golemgalvanize@github.com>2018-02-07 19:31:33 -0500
commit03f8d0d6ce48a302a21d7ef99eed9825800a6394 (patch)
treecb0240ef6e2468ee49730a3b620d440e5e88d4bc /src/window.c
parent4a903279df847024148b823990a317e79bc23c9f (diff)
parent250538fcae79e4d11c6efb4f4bfb34080f72bd48 (diff)
Merge branch 'master' of https://github.com/pret/pokeemerald into decompile_main_menu
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c
index 3913b5800..9a892d079 100644
--- a/src/window.c
+++ b/src/window.c
@@ -403,7 +403,7 @@ void PutWindowRectTilemap(u8 windowId, u8 x, u8 y, u8 width, u8 height)
}
}
-void BlitBitmapToWindow(u8 windowId, u8 *pixels, u16 x, u16 y, u16 width, u16 height)
+void BlitBitmapToWindow(u8 windowId, const u8 *pixels, u16 x, u16 y, u16 width, u16 height)
{
BlitBitmapRectToWindow(windowId, pixels, 0, 0, width, height, x, y, width, height);
}