aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/file_v1d.cpp
diff options
context:
space:
mode:
authorMax Horn2011-03-21 13:07:23 +0100
committerMax Horn2011-03-21 13:16:35 +0100
commitdd88f39bc7078f96fd06170260bf2ff332b4ca82 (patch)
tree70a275709fb034bd9efba96bbd1a5dffcc5d4c8e /engines/hugo/file_v1d.cpp
parent458ebbafd25d729da88eced603a88af9a05b79b3 (diff)
downloadscummvm-rg350-dd88f39bc7078f96fd06170260bf2ff332b4ca82.tar.gz
scummvm-rg350-dd88f39bc7078f96fd06170260bf2ff332b4ca82.tar.bz2
scummvm-rg350-dd88f39bc7078f96fd06170260bf2ff332b4ca82.zip
HUGO: Replace Utils::Box by Utils::notifyBox + Common::String::format
Diffstat (limited to 'engines/hugo/file_v1d.cpp')
-rw-r--r--engines/hugo/file_v1d.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hugo/file_v1d.cpp b/engines/hugo/file_v1d.cpp
index d8b3fa494f..48f274e88a 100644
--- a/engines/hugo/file_v1d.cpp
+++ b/engines/hugo/file_v1d.cpp
@@ -121,7 +121,7 @@ void FileManager_v1d::instructions() const {
f.read(wrkLine, 1);
} while (*wrkLine++ != '#'); // '#' is EOP
wrkLine[-2] = '\0'; // Remove EOP and previous CR
- Utils::Box(kBoxAny, "%s", line);
+ Utils::notifyBox(line);
wrkLine = line;
f.read(readBuf, 2); // Remove CRLF after EOP
}