diff options
author | Eugene Sandulenko | 2016-05-28 17:17:00 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-05-28 17:17:00 +0200 |
commit | 8fc736fb2dc676c9b25100b24e96dfb4d73c1a00 (patch) | |
tree | 242998cab78611ceda279f16823cce27eb6b3cb7 /graphics | |
parent | 986f4bbbf668cf0a308f50d2188856f94cfdb8d1 (diff) | |
download | scummvm-rg350-8fc736fb2dc676c9b25100b24e96dfb4d73c1a00.tar.gz scummvm-rg350-8fc736fb2dc676c9b25100b24e96dfb4d73c1a00.tar.bz2 scummvm-rg350-8fc736fb2dc676c9b25100b24e96dfb4d73c1a00.zip |
GRAPHICS: Fix warnings
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/nine_patch.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/nine_patch.cpp b/graphics/nine_patch.cpp index 20e9e36ab7..fea0d8ae66 100644 --- a/graphics/nine_patch.cpp +++ b/graphics/nine_patch.cpp @@ -60,7 +60,7 @@ NinePatchSide::~NinePatchSide() { bool NinePatchSide::init(Graphics::TransparentSurface *bmp, bool vertical) { const int len = vertical ? bmp->h : bmp->w; - uint i; + int i; int s, t, n, z; _m.clear(); @@ -109,7 +109,7 @@ bool NinePatchSide::init(Graphics::TransparentSurface *bmp, bool vertical) { } void NinePatchSide::calcOffsets(int len) { - int i, j; + uint i, j; int dest_offset = 0; int remaining_stretch = len - _fix; |