aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/text32.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/graphics/text32.cpp')
-rw-r--r--engines/sci/graphics/text32.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/graphics/text32.cpp b/engines/sci/graphics/text32.cpp
index 0d4f8deb35..606a9359ac 100644
--- a/engines/sci/graphics/text32.cpp
+++ b/engines/sci/graphics/text32.cpp
@@ -133,11 +133,11 @@ void GfxText32::drawTextBitmap(reg_t textObject) {
textY = textY * _screen->getDisplayHeight() / _screen->getHeight();
}
- for (int y = 0; y < height; y++) {
- for (int x = 0; x < width; x++) {
+ for (int curY = 0; curY < height; curY++) {
+ for (int curX = 0; curX < width; curX++) {
byte pixel = surface[curByte++];
if (pixel)
- _screen->putFontPixel(textY, x + textX, y, pixel);
+ _screen->putFontPixel(textY, curX + textX, curY, pixel);
}
}
}