From e809320f588941693b09881fc25efda80b8cdfb8 Mon Sep 17 00:00:00 2001 From: Borja Lorente Date: Sun, 31 Jul 2016 17:34:17 +0200 Subject: GRAPHICS: Fix indentation --- graphics/nine_patch.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'graphics/nine_patch.cpp') diff --git a/graphics/nine_patch.cpp b/graphics/nine_patch.cpp index 89c534f1ac..331344fd32 100644 --- a/graphics/nine_patch.cpp +++ b/graphics/nine_patch.cpp @@ -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); } } } -- cgit v1.2.3