diff options
author | Borja Lorente | 2016-07-31 17:34:17 +0200 |
---|---|---|
committer | Borja Lorente | 2016-08-02 08:33:50 +0200 |
commit | e809320f588941693b09881fc25efda80b8cdfb8 (patch) | |
tree | 63371b1e87c071c93d010b32b35eb64da32a1c6b /graphics/nine_patch.cpp | |
parent | a0bea8567b9f0d8751815ecbfab0c952fd7b80b7 (diff) | |
download | scummvm-rg350-e809320f588941693b09881fc25efda80b8cdfb8.tar.gz scummvm-rg350-e809320f588941693b09881fc25efda80b8cdfb8.tar.bz2 scummvm-rg350-e809320f588941693b09881fc25efda80b8cdfb8.zip |
GRAPHICS: Fix indentation
Diffstat (limited to 'graphics/nine_patch.cpp')
-rw-r--r-- | graphics/nine_patch.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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); } } } |