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

Max Horn fingolfin at users.sourceforge.net
Sun Mar 28 08:43:10 CEST 2004


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

Modified Files:
	smush_player.cpp 
Log Message:
Renamed more OSystem methods

Index: smush_player.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/smush/smush_player.cpp,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -d -r1.113 -r1.114
--- smush_player.cpp	29 Feb 2004 01:13:08 -0000	1.113
+++ smush_player.cpp	28 Mar 2004 16:30:49 -0000	1.114
@@ -966,7 +966,7 @@
 #endif
 
 	uint32 end_time, start_time = _vm->_system->get_msecs();
-	_vm->_system->copy_rect(_dst, _width, 0, 0, _width, _height);
+	_vm->_system->copyRectToScreen(_dst, _width, 0, 0, _width, _height);
 	_updateNeeded = true;
 	end_time = _vm->_system->get_msecs();
 	debug(4, "Smush stats: updateScreen( %03d )", end_time - start_time);
@@ -1026,7 +1026,7 @@
 	_updateNeeded = false;
 	
 	// Hide mouse
-	bool oldMouseState = _vm->_system->show_mouse(false);
+	bool oldMouseState = _vm->_system->showMouse(false);
 
 	// Load the video
 	setupAnim(filename, directory);
@@ -1065,7 +1065,7 @@
 	deinit();
 	
 	// Reset mouse state
-	_vm->_system->show_mouse(oldMouseState);
+	_vm->_system->showMouse(oldMouseState);
 }
 
 } // End of namespace Scumm





More information about the Scummvm-git-logs mailing list