aboutsummaryrefslogtreecommitdiff
path: root/engines/bladerunner/font.cpp
diff options
context:
space:
mode:
authorantoniou792018-12-16 19:45:19 +0200
committerEugene Sandulenko2018-12-25 12:35:52 +0100
commitc5da2df9e83298ad680cadec635d2a5cd223ffb7 (patch)
treeb70450086025e9147f92c9db747859cb9eef2f35 /engines/bladerunner/font.cpp
parent35e248f3f4a5ed45a9aa849fdee4b3b2ce643bd2 (diff)
downloadscummvm-rg350-c5da2df9e83298ad680cadec635d2a5cd223ffb7.tar.gz
scummvm-rg350-c5da2df9e83298ad680cadec635d2a5cd223ffb7.tar.bz2
scummvm-rg350-c5da2df9e83298ad680cadec635d2a5cd223ffb7.zip
BLADERUNNER: Remove fallback to internal font
Diffstat (limited to 'engines/bladerunner/font.cpp')
-rw-r--r--engines/bladerunner/font.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/bladerunner/font.cpp b/engines/bladerunner/font.cpp
index 59cafe7068..0f0307b161 100644
--- a/engines/bladerunner/font.cpp
+++ b/engines/bladerunner/font.cpp
@@ -213,7 +213,7 @@ void Font::drawCharacter(const uint8 character, Graphics::Surface &surface, int
// but that table get corrupted past the 176th entry. The image data glyph part of the FON file also only covers the 176 entries.
// So the following if clause-check will return here if the width and height values are unnaturally big.
// The bug only affects debug cases where all character glyph need to be displayed...
- // ...or potential custom dialogue / translations that reference characters that are not within the range of Ascii values for the normal Latin characters.
+ // ...or potential custom dialogue / translations that reference characters that are not within the range of ASCII values for the normal Latin characters.
if (width > 100 || height > 100) {
return;
}