aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/font.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/tony/font.cpp')
-rw-r--r--engines/tony/font.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/tony/font.cpp b/engines/tony/font.cpp
index 91dd8c0c39..41dfa1f7bf 100644
--- a/engines/tony/font.cpp
+++ b/engines/tony/font.cpp
@@ -122,6 +122,9 @@ void RMFont::close() {
int RMFont::stringLen(const Common::String &text) {
uint len, i;
+ if (text.empty())
+ return letterLength('\0');
+
len = 0;
for (i = 0; i < text.size() - 1; i++)
len += letterLength(text[i], text[i + 1]);