mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 21:58:48 +00:00
GetTextureBGRA()'s 'width' and 'height' parameters should be unsigned.
This commit is contained in:
parent
5005d528c4
commit
8cf3ea3eea
2 changed files with 11 additions and 7 deletions
|
@ -22,7 +22,7 @@ namespace DebugUtil
|
|||
{
|
||||
void Init();
|
||||
|
||||
void GetTextureBGRA(u8 *dst, u32 texmap, s32 mip, int width, int height);
|
||||
void GetTextureBGRA(u8 *dst, u32 texmap, s32 mip, u32 width, u32 height);
|
||||
|
||||
void DumpActiveTextures();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue