GRAPHICS: Fix indentation

This commit is contained in:
Borja Lorente 2016-07-31 17:34:17 +02:00
parent a0bea8567b
commit e809320f58
3 changed files with 39 additions and 39 deletions

View file

@ -264,11 +264,11 @@ void NinePatchBitmap::drawRegions(Graphics::Surface &target, int dx, int dy, int
for (uint i = 0; i < _v._m.size(); ++i) {
for (uint j = 0; j < _h._m.size(); ++j) {
Common::Rect r(_h._m[j]->offset, _v._m[i]->offset,
_h._m[j]->offset + _h._m[j]->length, _v._m[i]->offset + _v._m[i]->length);
_h._m[j]->offset + _h._m[j]->length, _v._m[i]->offset + _v._m[i]->length);
_bmp->blit(target, dx + _h._m[j]->dest_offset, dy + _v._m[i]->dest_offset,
Graphics::FLIP_NONE, &r, TS_ARGB(255, 255, 255, 255),
_h._m[j]->dest_length, _v._m[i]->dest_length);
Graphics::FLIP_NONE, &r, TS_ARGB(255, 255, 255, 255),
_h._m[j]->dest_length, _v._m[i]->dest_length);
}
}
}