aboutsummaryrefslogtreecommitdiff
path: root/engines/mutationofjb/font.cpp
diff options
context:
space:
mode:
authorĽubomír Remák2018-07-21 20:29:11 +0200
committerEugene Sandulenko2018-08-25 23:12:01 +0200
commit3306cbfeaa2f1c6fd471daaee054290df7e44280 (patch)
tree56379cb27336281e9ca92b12d6db7ab6d84c31e8 /engines/mutationofjb/font.cpp
parent2e656e69b3b9416f5164f0963951df203f4978e5 (diff)
downloadscummvm-rg350-3306cbfeaa2f1c6fd471daaee054290df7e44280.tar.gz
scummvm-rg350-3306cbfeaa2f1c6fd471daaee054290df7e44280.tar.bz2
scummvm-rg350-3306cbfeaa2f1c6fd471daaee054290df7e44280.zip
MUTATIONOFJB: Implement SayCommand::execute.
Diffstat (limited to 'engines/mutationofjb/font.cpp')
-rw-r--r--engines/mutationofjb/font.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mutationofjb/font.cpp b/engines/mutationofjb/font.cpp
index 4350b19850..4f4a0ee82b 100644
--- a/engines/mutationofjb/font.cpp
+++ b/engines/mutationofjb/font.cpp
@@ -77,7 +77,7 @@ bool Font::load(const Common::String &fileName) {
void Font::drawGlyph(uint8 glyph, uint8 baseColor, int16 &x, int16 &y, Graphics::ManagedSurface &surf) const {
GlyphMap::iterator it = _glyphs.find(glyph);
if (it == _glyphs.end()) {
- warning("Glyph %d not found", glyph);
+ // Missing glyph is a common situation in the game and it's okay to ignore it.
return;
}