diff options
author | Diegoisawesome <diego@domoreaweso.me> | 2018-02-06 20:37:54 -0600 |
---|---|---|
committer | Diegoisawesome <diego@domoreaweso.me> | 2018-02-06 20:37:54 -0600 |
commit | 18abda9dca7e38a1dee63ff0d167e1e2601504bf (patch) | |
tree | 0464a470ba5357cfb48a8b75f59246e649c2e96d /src/window.c | |
parent | 97c9a4ec22a479c5a98226c9333e9bffcf1fd4e0 (diff) |
Finish menu.s and eliminate TextColor
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); } |