summaryrefslogtreecommitdiff
path: root/src/window.c
diff options
context:
space:
mode:
authorgolem galvanize <golemgalvanize@github.com>2018-02-08 16:03:53 -0500
committergolem galvanize <golemgalvanize@github.com>2018-02-08 16:03:53 -0500
commitde95a703b0350996ca26f245392c3a1dae34ea63 (patch)
treeb9737d91ea96c51c1d09ad3a071092acdd76ddf5 /src/window.c
parentcaf5d136b97c17c614d7186a5524d6ea7a1b142b (diff)
parent387dbf48d0bbb22dc16158a1ee0d373c166c8438 (diff)
Merge branch 'master' of https://github.com/pret/pokeemerald into decompile_item_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);
}