diff options
| -rw-r--r-- | engines/avalanche/closing.cpp | 2 | 
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.  }  | 
