GRAPHICS: Fix GCC signed/unsigned warning

This commit is contained in:
Torbjörn Andersson 2016-05-29 22:58:01 +02:00
parent 5cae160ad7
commit 2c96073650

View File

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