diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2018-02-07 18:24:42 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-07 18:24:42 -0600 |
commit | 250538fcae79e4d11c6efb4f4bfb34080f72bd48 (patch) | |
tree | b81a93d022488ed5a71ce0ac80ee4dd1b5662ac9 /src/window.c | |
parent | 48e63979c8a131bc059974194bd548f60dcdd24c (diff) | |
parent | 772fd47564da4d2c4072b83e43a9cc28e62ce5bb (diff) |
Merge pull request #205 from Diegoisawesome/menu
Decompile menu.s and new_menu_helpers.s
Diffstat (limited to 'src/window.c')
-rw-r--r-- | src/window.c | 2 |
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); } |