aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorStrangerke2013-10-05 15:09:00 +0200
committerStrangerke2013-10-05 15:09:00 +0200
commitbf41366fd7e042c1ef48ffc4ff5366fee27e756f (patch)
treebace0abf476d5907c329eb568c4388ba3303b563 /engines
parent1844dcf05cdf57a42d8336ef3c6ff1ffe02a951f (diff)
downloadscummvm-rg350-bf41366fd7e042c1ef48ffc4ff5366fee27e756f.tar.gz
scummvm-rg350-bf41366fd7e042c1ef48ffc4ff5366fee27e756f.tar.bz2
scummvm-rg350-bf41366fd7e042c1ef48ffc4ff5366fee27e756f.zip
AVALANCHE: Fix error not reported by MSVC
Diffstat (limited to 'engines')
-rw-r--r--engines/avalanche/closing.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/avalanche/closing.cpp b/engines/avalanche/closing.cpp
index 00a75897a2..1cb2e84218 100644
--- a/engines/avalanche/closing.cpp
+++ b/engines/avalanche/closing.cpp
@@ -67,7 +67,7 @@ void Closing::exitGame() {
getScreen(kScreenNagScreen);
byte nounId = _vm->_rnd->getRandomNumber(11);
byte verbId = _vm->_rnd->getRandomNumber(11);
- Common::String result = Common::String::format("%s will %d you", nouns[nounId], verbs[verbId]);
+ Common::String result = Common::String::format("%s will %s you", nouns[nounId], verbs[verbId]);
putIn(result, 1628);
showScreen(); // No halt- it's already set up.
}