[Scummvm-cvs-logs] CVS: scummvm/simon simon.cpp,1.23,1.24

Lionel Ulmer bbrox at users.sourceforge.net
Sat May 4 02:56:01 CEST 2002


Update of /cvsroot/scummvm/scummvm/simon
In directory usw-pr-cvs1:/tmp/cvs-serv19137/simon

Modified Files:
	simon.cpp 
Log Message:
Change the 'poperty' call to be 64-bits clean.

Porters, please check that I did not break anything while updating
your ports. Thanks :-)



Index: simon.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/simon/simon.cpp,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- simon.cpp	1 May 2002 00:13:03 -0000	1.23
+++ simon.cpp	4 May 2002 09:55:10 -0000	1.24
@@ -7884,6 +7884,8 @@
 
 
 void SimonState::go() {
+	OSystem::Property prop;
+
 	if (!_dump_file)
 		_dump_file = stdout;
 
@@ -7915,7 +7917,8 @@
 	_vga_base_delay = 1;
 	_vk_t_toggle = true;
 
-	_system->property(OSystem::PROP_SHOW_DEFAULT_CURSOR, 1);
+	prop.show_cursor = true;
+	_system->property(OSystem::PROP_SHOW_DEFAULT_CURSOR, &prop);
 
 	while(1) {
 		hitarea_stuff();





More information about the Scummvm-git-logs mailing list