[Scummvm-cvs-logs] CVS: scummvm/backends/dc dc.h,1.28,1.29 time.cpp,1.6,1.7

Max Horn fingolfin at users.sourceforge.net
Sun Mar 14 18:42:39 CET 2004


Update of /cvsroot/scummvm/scummvm/backends/dc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8418/dc

Modified Files:
	dc.h time.cpp 
Log Message:
Renamed OSystem::set_timer() to setTimerCallback(); more OSystem Doxygen changes

Index: dc.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/dc/dc.h,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- dc.h	15 Mar 2004 00:47:59 -0000	1.28
+++ dc.h	15 Mar 2004 01:18:36 -0000	1.29
@@ -135,7 +135,7 @@
   void copy_rect_overlay(const int16 *buf, int pitch, int x, int y, int w, int h);
 
   // Add a callback timer
-  void set_timer(TimerProc callback, int timer);
+  void setTimerCallback(TimerProc callback, int timer);
 
   // Mutex handling
   MutexRef createMutex();

Index: time.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/dc/time.cpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- time.cpp	6 Jan 2004 12:45:26 -0000	1.6
+++ time.cpp	15 Mar 2004 01:18:37 -0000	1.7
@@ -53,7 +53,7 @@
   get_msecs();
 }
 
-void OSystem_Dreamcast::set_timer(TimerProc callback, int timer)
+void OSystem_Dreamcast::setTimerCallback(TimerProc callback, int timer)
 {
   if (callback != NULL) {
     _timer_duration = timer;





More information about the Scummvm-git-logs mailing list