diff options
| author | Travis Howell | 2003-12-11 02:13:42 +0000 | 
|---|---|---|
| committer | Travis Howell | 2003-12-11 02:13:42 +0000 | 
| commit | c3f23cbd4873b8bed93636c9b60b3de738b74618 (patch) | |
| tree | 2287749b6550b00d00b7093090afdf199880e81b | |
| parent | 44eadc398c175c1f167cecaadd7349b46146021a (diff) | |
| download | scummvm-rg350-c3f23cbd4873b8bed93636c9b60b3de738b74618.tar.gz scummvm-rg350-c3f23cbd4873b8bed93636c9b60b3de738b74618.tar.bz2 scummvm-rg350-c3f23cbd4873b8bed93636c9b60b3de738b74618.zip  | |
Oops
svn-id: r11561
| -rw-r--r-- | simon/simon.cpp | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index 938aea8e35..ac2575ca70 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -4793,11 +4793,12 @@ void SimonEngine::delay(uint amount) {  		while (_system->poll_event(&event)) {  			switch (event.event_code) {  			case OSystem::EVENT_KEYDOWN: +/*  			// First attempt at quick load/save keys support  			// For some reason Simon often walks into a location when loading  			// and sometimes Simon isn't shown until he is moved. -/*				if (event.kbd.keycode >= '0' && event.kbd.keycode<='9' +				if (event.kbd.keycode >= '0' && event.kbd.keycode<='9'  					&& (event.kbd.flags == OSystem::KBD_ALT ||  						event.kbd.flags == OSystem::KBD_CTRL)) {  					_saveLoadSlot = event.kbd.keycode - '0'; @@ -4825,6 +4826,7 @@ void SimonEngine::delay(uint amount) {  						}  						_saveLoadFlag = 0;  					} +				}  */  				if (event.kbd.flags == OSystem::KBD_CTRL) {  					if (event.kbd.keycode == 'f')  | 
