diff options
| author | uruk | 2014-07-26 11:44:35 +0200 | 
|---|---|---|
| committer | uruk | 2014-07-26 11:44:35 +0200 | 
| commit | 6ac879270f34c8de99f172a7d56c25e12339a106 (patch) | |
| tree | 6079a548dab775c5fb603ec615e31c4844a38ec6 | |
| parent | 88286115c8dddfac4f45740c58a2e2d3a062be8d (diff) | |
| download | scummvm-rg350-6ac879270f34c8de99f172a7d56c25e12339a106.tar.gz scummvm-rg350-6ac879270f34c8de99f172a7d56c25e12339a106.tar.bz2 scummvm-rg350-6ac879270f34c8de99f172a7d56c25e12339a106.zip | |
CGE2: Repair display of version and translation strings.
| -rw-r--r-- | engines/cge2/events.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engines/cge2/events.cpp b/engines/cge2/events.cpp index ecb6183540..914f1255be 100644 --- a/engines/cge2/events.cpp +++ b/engines/cge2/events.cpp @@ -64,7 +64,7 @@ bool Keyboard::getKey(Common::Event &event) {  		if (event.type == Common::EVENT_KEYUP)  			return false;  		// Display ScummVM version and translation strings -		for (int i = 0; i < 5; i++) +		for (int i = 0; i < 3; i++)  			_vm->_commandHandler->addCommand(kCmdInf, 1, kShowScummVMVersion + i, NULL);  		return false;  	case Common::KEYCODE_F5: | 
