[Scummvm-cvs-logs] CVS: scummvm/common timer.cpp,1.15,1.16

Jonathan Gray khalek at users.sourceforge.net
Sat Sep 27 18:52:02 CEST 2003


Update of /cvsroot/scummvm/scummvm/common
In directory sc8-pr-cvs1:/tmp/cvs-serv30069

Modified Files:
	timer.cpp 
Log Message:
don't try to pass NULL when there is an int argument

Index: timer.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/timer.cpp,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- timer.cpp	27 Sep 2003 16:54:11 -0000	1.15
+++ timer.cpp	28 Sep 2003 00:59:01 -0000	1.16
@@ -51,7 +51,7 @@
 }
 
 Timer::~Timer() {
-	_system->set_timer(0, NULL);
+	_system->set_timer(0, 0);
 
 	{
 		StackLock lock(_mutex);





More information about the Scummvm-git-logs mailing list