diff options
author | jiangzhengwenjz <jiangzhengwenjzw@qq.com> | 2019-08-27 08:01:01 +0800 |
---|---|---|
committer | jiangzhengwenjz <jiangzhengwenjzw@qq.com> | 2019-08-27 08:20:59 +0800 |
commit | b5162467692853dabb7765976fc7c0fa679c0f3d (patch) | |
tree | a9caa1a1e0fd5b4fa8403aff1f894933c244ef9c /src/window.c | |
parent | 184066d1c106d6dc61621504abe808112b48674e (diff) |
thru TryDoForceSwitchOut
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); |