diff options
| author | Florian Kagerer | 2009-06-20 16:36:26 +0000 | 
|---|---|---|
| committer | Florian Kagerer | 2009-06-20 16:36:26 +0000 | 
| commit | 164c4a517757c296e10da4fef8f04a42012777f2 (patch) | |
| tree | 12e39501f6d942032beab2584138acc19d1a56f5 | |
| parent | cb06b0983ee262f18110996049f3038bf3d205b8 (diff) | |
| download | scummvm-rg350-164c4a517757c296e10da4fef8f04a42012777f2.tar.gz scummvm-rg350-164c4a517757c296e10da4fef8f04a42012777f2.tar.bz2 scummvm-rg350-164c4a517757c296e10da4fef8f04a42012777f2.zip  | |
LOL: minor fix for save menu
svn-id: r41715
| -rw-r--r-- | engines/kyra/gui_lol.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/kyra/gui_lol.cpp b/engines/kyra/gui_lol.cpp index 2d65132fc9..22caaa9bb6 100644 --- a/engines/kyra/gui_lol.cpp +++ b/engines/kyra/gui_lol.cpp @@ -2322,7 +2322,7 @@ int GUI_LoL::runMenu(Menu &menu) {  			int pg = _screen->setCurPage(0);  			_vm->_txt->clearDim(8);  			textCursorTimer = 0; -			textCursorStatus = 1; +			textCursorStatus = 0;  			fC = _screen->getTextWidth(_saveDescription);  			while (fC >= fW) { @@ -2348,7 +2348,7 @@ int GUI_LoL::runMenu(Menu &menu) {  				}				  			} -			if (getInput()) {				 +			if (getInput()) {  				if (!_newMenu)  					_newMenu = _currentMenu;  				else  | 
