aboutsummaryrefslogtreecommitdiff
path: root/engines/access/font.cpp
diff options
context:
space:
mode:
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