diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2019-04-14 20:29:37 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2019-04-14 20:29:37 -0400 |
commit | a4b19e9187a663564b7d41f643dc28ecedaa100d (patch) | |
tree | 70fa820814ee21909195f4873ec9653f343cd3d2 /src/window.c | |
parent | c95740ab85fbec74cbfb844f33e56bf879fee8c9 (diff) |
tm_case finish code
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 e760fc8e4..71cfa6898 100644 --- a/src/window.c +++ b/src/window.c @@ -320,7 +320,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); } |