AVALANCHE: Fix error not reported by MSVC

This commit is contained in:
Strangerke 2013-10-05 15:09:00 +02:00
parent 1844dcf05c
commit bf41366fd7

View File

@ -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.
}