diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2019-09-25 13:56:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-25 13:56:50 -0400 |
commit | 1d4234bd7e295c553485b7d676d42c838e4762c4 (patch) | |
tree | 67ac4179d9978baf4e989ef55245e4be0d777c04 /src/window.c | |
parent | 7f6d86a8bf2afe349135d502debc2237bafafff5 (diff) | |
parent | 931bf4ce4b4fd7ea63d00f36adfd2bf720831a80 (diff) |
Merge branch 'master' into PIE2
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 5ccd05f35..4aaa6d9b4 100644 --- a/src/window.c +++ b/src/window.c @@ -364,7 +364,7 @@ void FillWindowPixelRect(u8 windowId, u8 fillValue, u16 x, u16 y, u16 width, u16 FillBitmapRect4Bit(&pixelRect, x, y, width, height, fillValue); } -void CopyToWindowPixelBuffer(u8 windowId, const u8 *src, u16 size, u16 tileOffset) +void CopyToWindowPixelBuffer(u8 windowId, const void *src, u16 size, u16 tileOffset) { if (size != 0) CpuCopy16(src, gWindows[windowId].tileData + (0x20 * tileOffset), size); |