GetTextureBGRA()'s 'width' and 'height' parameters should be unsigned.

This commit is contained in:
lioncash
2013-01-14 16:29:52 -05:00
parent 5005d528c4
commit 8cf3ea3eea
2 changed files with 11 additions and 7 deletions

View File

@ -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();