aboutsummaryrefslogtreecommitdiff
path: root/graphics/sjis.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2009-07-07 18:17:30 +0000
committerJohannes Schickel2009-07-07 18:17:30 +0000
commit8c65d4d4a94f5a0330b1c86f6378ffada20dd1be (patch)
tree57d2ffecc3b9ff932d5fa0390b9f7634cf88f3ca /graphics/sjis.cpp
parent62eebc3e17f952defaa779ed1dc770570dac309d (diff)
downloadscummvm-rg350-8c65d4d4a94f5a0330b1c86f6378ffada20dd1be.tar.gz
scummvm-rg350-8c65d4d4a94f5a0330b1c86f6378ffada20dd1be.tar.bz2
scummvm-rg350-8c65d4d4a94f5a0330b1c86f6378ffada20dd1be.zip
- Rename FontSJIS::enableShadow to enableOutline.
- Initialize outline to false by default in FontTowns. svn-id: r42231
Diffstat (limited to 'graphics/sjis.cpp')
-rw-r--r--graphics/sjis.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/graphics/sjis.cpp b/graphics/sjis.cpp
index 1478c1c286..176ec8eda5 100644
--- a/graphics/sjis.cpp
+++ b/graphics/sjis.cpp
@@ -35,7 +35,7 @@ bool FontTowns::loadFromStream(Common::ReadStream &stream) {
}
template<typename Color>
-void FontTowns::drawCharInternShadow(const uint16 *glyph, uint8 *dst, int pitch, Color c1, Color c2) const {
+void FontTowns::drawCharInternOutline(const uint16 *glyph, uint8 *dst, int pitch, Color c1, Color c2) const {
uint32 outlineGlyph[18];
memset(outlineGlyph, 0, sizeof(outlineGlyph));
@@ -90,15 +90,15 @@ void FontTowns::drawChar(void *dst, uint16 ch, int pitch, int bpp, uint32 c1, ui
const uint16 *glyphSource = _fontData + sjisToChunk(ch & 0xFF, ch >> 8) * 16;
if (bpp == 1) {
- if (!_shadowEnabled)
+ if (!_outlineEnabled)
drawCharIntern<uint8>(glyphSource, (uint8 *)dst, pitch, c1);
else
- drawCharInternShadow<uint8>(glyphSource, (uint8 *)dst, pitch, c1, c2);
+ drawCharInternOutline<uint8>(glyphSource, (uint8 *)dst, pitch, c1, c2);
} else if (bpp == 2) {
- if (!_shadowEnabled)
+ if (!_outlineEnabled)
drawCharIntern<uint16>(glyphSource, (uint8 *)dst, pitch, c1);
else
- drawCharInternShadow<uint16>(glyphSource, (uint8 *)dst, pitch, c1, c2);
+ drawCharInternOutline<uint16>(glyphSource, (uint8 *)dst, pitch, c1, c2);
} else {
error("FontTowns::drawChar: unsupported bpp: %d", bpp);
}