diff options
author | garak <garakmon@gmail.com> | 2018-10-21 15:12:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-21 15:12:18 -0400 |
commit | 7a9c7e5f068a2ec88ce6fe24a5c72f4b4ae7f48b (patch) | |
tree | b8e391c9e856a2546075d44cba353c4b100a52ef /include/window.h | |
parent | 2bb286ab4e3a967ce129d82cdad0ede4d744fa73 (diff) | |
parent | 804d0a4b6a12907974ffd8cb20f6ed6c527b663b (diff) |
Merge branch 'master' into sprite-tags
Diffstat (limited to 'include/window.h')
-rw-r--r-- | include/window.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/window.h b/include/window.h index 1a6ff3808..29fdf8833 100644 --- a/include/window.h +++ b/include/window.h @@ -55,7 +55,7 @@ void PutWindowRectTilemap(u8 windowId, u8 x, u8 y, u8 width, u8 height); void BlitBitmapToWindow(u8 windowId, const u8 *pixels, u16 x, u16 y, u16 width, u16 height); void BlitBitmapRectToWindow(u8 windowId, const u8 *pixels, u16 srcX, u16 srcY, u16 srcWidth, int srcHeight, u16 destX, u16 destY, u16 rectWidth, u16 rectHeight); void FillWindowPixelRect(u8 windowId, u8 fillValue, u16 x, u16 y, u16 width, u16 height); -void CopyToWindowPixelBuffer(u8 windowId, const u8 *src, u16 size, u16 tileOffset); +void CopyToWindowPixelBuffer(u8 windowId, const void *src, u16 size, u16 tileOffset); void FillWindowPixelBuffer(u8 windowId, u8 fillValue); void ScrollWindow(u8 windowId, u8 direction, u8 distance, u8 fillValue); void CallWindowFunction(u8 windowId, void ( *func)(u8, u8, u8, u8, u8, u8)); |