aboutsummaryrefslogtreecommitdiff
path: root/engines/tucker/graphics.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/tucker/graphics.cpp')
-rw-r--r--engines/tucker/graphics.cpp31
1 files changed, 9 insertions, 22 deletions
diff --git a/engines/tucker/graphics.cpp b/engines/tucker/graphics.cpp
index 4498f553bb..4955068b05 100644
--- a/engines/tucker/graphics.cpp
+++ b/engines/tucker/graphics.cpp
@@ -223,36 +223,23 @@ void Graphics::copyTo640(uint8 *dst, const uint8 *src, int w, int srcPitch, int
}
void Graphics::drawStringChar(uint8 *dst, uint8 chr, int pitch, uint8 chrColor, const uint8 *src) {
- if (chr < 32 || chr - 32 >= kCharSet1CharsCount) {
+ if (chr < 32 || chr - 32 >= _charset->xCount * _charset->yCount) {
return;
}
- int offset = (chr - 32) * kCharSet1CharSize;
- for (int y = 0; y < kCharSet1CharH; ++y) {
- for (int x = 0; x < kCharSet1CharW; ++x) {
+ int offset = (chr - 32) * _charset->charH * _charset->charW;
+ for (int y = 0; y < _charset->charH; ++y) {
+ for (int x = 0; x < _charset->charW; ++x) {
const int color = src[offset++];
if (color != 0) {
- dst[x] = (color == 128) ? color : chrColor;
- }
- }
- dst += pitch;
- }
-}
-
-void Graphics::drawStringChar2(uint8 *dst, uint8 chr, int pitch, uint8 chrColor, const uint8 *src) {
- if (chr < 32 || chr - 32 >= kCharSet2CharsCount) {
- return;
- }
- int offset = (chr - 32) * kCharSet2CharSize;
- for (int y = 0; y < kCharSet2CharH; ++y) {
- for (int x = 0; x < kCharSet2CharW; ++x) {
- const int color = src[offset++];
- if (color != 0) {
- dst[x] = color;
+ if (_charset == &_creditsCharset) {
+ dst[x] = color;
+ } else {
+ dst[x] = (color == 128) ? color : chrColor;
+ }
}
}
dst += pitch;
}
}
-
} // namespace Tucker