From c5da2df9e83298ad680cadec635d2a5cd223ffb7 Mon Sep 17 00:00:00 2001 From: antoniou79 Date: Sun, 16 Dec 2018 19:45:19 +0200 Subject: BLADERUNNER: Remove fallback to internal font --- engines/bladerunner/font.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/bladerunner/font.cpp') 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; } -- cgit v1.2.3