aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche
diff options
context:
space:
mode:
authorStrangerke2013-09-08 18:52:40 +0200
committerStrangerke2013-09-08 18:52:40 +0200
commitf33ba719245a8da967ef5de414ecaa35d39df7e1 (patch)
tree15a64713dbe9b7417156223045a73c9ca2b2dd57 /engines/avalanche
parent78417de0d119e940243c6499be01f2aebf669f2e (diff)
downloadscummvm-rg350-f33ba719245a8da967ef5de414ecaa35d39df7e1.tar.gz
scummvm-rg350-f33ba719245a8da967ef5de414ecaa35d39df7e1.tar.bz2
scummvm-rg350-f33ba719245a8da967ef5de414ecaa35d39df7e1.zip
AVALANCHE: Fix bug in Visa2
Diffstat (limited to 'engines/avalanche')
-rw-r--r--engines/avalanche/visa2.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/avalanche/visa2.cpp b/engines/avalanche/visa2.cpp
index a1863065da..b356aef7c8 100644
--- a/engines/avalanche/visa2.cpp
+++ b/engines/avalanche/visa2.cpp
@@ -84,8 +84,7 @@ void Visa::displayScrollChain(char block, byte point, bool report, bool bubbling
if (error) {
if (report) {
- Common::String todisplay;
- todisplay.format("%cError accessing scroll %c%s", 7, block, _vm->_gyro->intToStr(point).c_str());
+ Common::String todisplay = Common::String::format("%cError accessing scroll %c%d", Scrolls::kControlBell, block, point);
_vm->_scrolls->displayText(todisplay);
}
return;