mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-09 03:10:22 +00:00
GRAPHICS: Fix warnings
This commit is contained in:
parent
986f4bbbf6
commit
8fc736fb2d
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user