summaryrefslogtreecommitdiff
path: root/src/gfx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gfx.cpp')
-rw-r--r--src/gfx.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/gfx.cpp b/src/gfx.cpp
index 332015ef3..f04524fd0 100644
--- a/src/gfx.cpp
+++ b/src/gfx.cpp
@@ -151,13 +151,7 @@ void GfxFillRect(int left, int top, int right, int bottom, int color)
dst = _screen.renderer->MoveTo(dst, 0, 1);
} while (--bottom);
} else {
- /* use colortable mode */
- const byte* ctab = GetNonSprite(GB(color, 0, PALETTE_WIDTH)) + 1;
-
- do {
- for (int i = 0; i != right; i++) _screen.renderer->SetPixel(dst, i, 0, ctab[((uint8 *)dst)[i]]);
- dst = _screen.renderer->MoveTo(dst, 0, 1);
- } while (--bottom);
+ BlitterFactoryBase::GetCurrentBlitter()->DrawColorMappingRect(dst, right, bottom, GB(color, 0, PALETTE_WIDTH));
}
} else {
byte bo = (oleft - left + dpi->left + otop - top + dpi->top) & 1;