[Scummvm-cvs-logs] CVS: scummvm/scumm/smush smush_player.cpp,1.101,1.102

Max Horn fingolfin at users.sourceforge.net
Mon Jan 26 06:29:23 CET 2004


Update of /cvsroot/scummvm/scummvm/scumm/smush
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6394/smush

Modified Files:
	smush_player.cpp 
Log Message:
get rid of ScummEngine::_insaneState (I think we should eventually stop calling processKbd() from inside smush and replace it with special code there)

Index: smush_player.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/smush/smush_player.cpp,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -d -r1.101 -r1.102
--- smush_player.cpp	25 Jan 2004 05:25:50 -0000	1.101
+++ smush_player.cpp	25 Jan 2004 12:20:59 -0000	1.102
@@ -247,7 +247,6 @@
 	_frame = 0;
 
 	_vm->_videoFinished = false;
-	_vm->_insaneState = true;
 
 	_smixer = new SmushMixer(_vm->_mixer);
 
@@ -286,7 +285,6 @@
 	
 	_vm->_mixer->stopHandle(_IACTchannel);
 
-	_vm->_insaneState = false;
 	_vm->_fullRedraw = true;
 }
 
@@ -998,7 +996,7 @@
 
 	while (true) {
 		_vm->parseEvents();
-		_vm->processKbd();
+		_vm->processKbd(true);
 		if (_updateNeeded) {
 			
 			uint32 end_time, start_time;





More information about the Scummvm-git-logs mailing list