aboutsummaryrefslogtreecommitdiff
path: root/engines/access/font.cpp
diff options
context:
space:
mode:
authorStrangerke2014-11-10 10:29:39 +0100
committerPaul Gilbert2014-12-12 22:29:02 -0500
commit26b632a9eb36f8e5e8874b50666b3d739dd1416f (patch)
tree2e93be0de235a6a4961ca1bb0b64d7bd17811eea /engines/access/font.cpp
parent38edbfb4bcbdfe819a133ede25bd85b19d12df60 (diff)
downloadscummvm-rg350-26b632a9eb36f8e5e8874b50666b3d739dd1416f.tar.gz
scummvm-rg350-26b632a9eb36f8e5e8874b50666b3d739dd1416f.tar.bz2
scummvm-rg350-26b632a9eb36f8e5e8874b50666b3d739dd1416f.zip
ACCESS: Fix display in cmdDeath()
Diffstat (limited to 'engines/access/font.cpp')
-rw-r--r--engines/access/font.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/access/font.cpp b/engines/access/font.cpp
index ffc1715c39..5eaf0b0ca8 100644
--- a/engines/access/font.cpp
+++ b/engines/access/font.cpp
@@ -111,7 +111,7 @@ bool Font::getLine(Common::String &s, int maxWidth, Common::String &line, int &w
// Reached maximum allowed size
// If this was the last character of the string, let it go
if (*src == '\0')
- break;
+ return true;
// Work backwards to find space at the start of the current word
// as a point to split the line on