mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-21 19:51:49 +00:00
GRAPHICS: Fix GCC signed/unsigned warning
This commit is contained in:
parent
5cae160ad7
commit
2c96073650
@ -59,8 +59,8 @@ NinePatchSide::~NinePatchSide() {
|
||||
|
||||
|
||||
bool NinePatchSide::init(Graphics::TransparentSurface *bmp, bool vertical) {
|
||||
const int len = vertical ? bmp->h : bmp->w;
|
||||
int i;
|
||||
const uint len = vertical ? bmp->h : bmp->w;
|
||||
uint i;
|
||||
int s, t, z;
|
||||
|
||||
_m.clear();
|
||||
|
Loading…
x
Reference in New Issue
Block a user