diff options
author | Borja Lorente | 2016-07-31 18:00:36 +0200 |
---|---|---|
committer | Borja Lorente | 2016-08-02 08:33:50 +0200 |
commit | 03f2d9b01ed392488269647d557b25f41a86fc84 (patch) | |
tree | 0d14dadfb4b4ada69bf761e77daccdf2f816503a /graphics/nine_patch.cpp | |
parent | e809320f588941693b09881fc25efda80b8cdfb8 (diff) | |
download | scummvm-rg350-03f2d9b01ed392488269647d557b25f41a86fc84.tar.gz scummvm-rg350-03f2d9b01ed392488269647d557b25f41a86fc84.tar.bz2 scummvm-rg350-03f2d9b01ed392488269647d557b25f41a86fc84.zip |
GRAPHICS: Remove unused variables
Diffstat (limited to 'graphics/nine_patch.cpp')
-rw-r--r-- | graphics/nine_patch.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/graphics/nine_patch.cpp b/graphics/nine_patch.cpp index 331344fd32..f89a0f2df7 100644 --- a/graphics/nine_patch.cpp +++ b/graphics/nine_patch.cpp @@ -235,9 +235,6 @@ void NinePatchBitmap::blit(Graphics::Surface &target, int dx, int dy, int dw, in drawRegions(srf, dx, dy, dw, dh); - byte black = getColorIndex(TS_RGB(0, 0, 0), palette); - byte white = getColorIndex(TS_RGB(255, 255, 255), palette); - for (uint i = 0; i < srf.w; ++i) { for (uint j = 0; j < srf.h; ++j) { uint32 color = *(uint32*)srf.getBasePtr(i, j); |