[Scummvm-cvs-logs] CVS: scummvm/backends/dc audio.cpp,1.10,1.11 dc.h,1.18,1.19 display.cpp,1.15,1.16

Max Horn fingolfin at users.sourceforge.net
Tue Feb 24 14:56:00 CET 2004


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

Modified Files:
	audio.cpp dc.h display.cpp 
Log Message:
the OSystem changes we discussed on the ML (note: renaming of the existing OSystem API is not yet finished); porters will have to fix their ports to get them to compile again

Index: audio.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/dc/audio.cpp,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- audio.cpp	6 Jan 2004 12:45:25 -0000	1.10
+++ audio.cpp	24 Feb 2004 22:39:35 -0000	1.11
@@ -34,7 +34,7 @@
   do_sound_command(CMD_SET_BUFFER(3));
 }
 
-bool OSystem_Dreamcast::set_sound_proc(SoundProc proc, void *param, SoundFormat format)
+bool OSystem_Dreamcast::setSoundCallback(SoundProc proc, void *param)
 {
 #if SAMPLE_MODE == 0
   assert(format == SOUND_16BIT);
@@ -49,7 +49,7 @@
   return true;
 }
 
-void OSystem_Dreamcast::clear_sound_proc()
+void OSystem_Dreamcast::clearSoundCallback()
 {
   _sound_proc = NULL;
   _sound_proc_param = NULL;

Index: dc.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/dc/dc.h,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- dc.h	6 Jan 2004 12:45:26 -0000	1.18
+++ dc.h	24 Feb 2004 22:39:36 -0000	1.19
@@ -35,7 +35,7 @@
 
   // Set the size of the video bitmap.
   // Typically, 320x200
-  void init_size(uint w, uint h);
+  void initSize(uint w, uint h);
   int16 get_height() { return _screen_h; }
   int16 get_width() { return _screen_w; }
 
@@ -71,8 +71,8 @@
   bool poll_event(Event *event);
   
   // Set function that generates samples 
-  bool set_sound_proc(SoundProc proc, void *param, SoundFormat format);
-  void clear_sound_proc();
+  bool setSoundCallback(SoundProc proc, void *param);
+  void clearSoundCallback();
 		
   // Poll cdrom status
   // Returns true if cd audio is playing

Index: display.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/dc/display.cpp,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- display.cpp	6 Jan 2004 12:45:26 -0000	1.15
+++ display.cpp	24 Feb 2004 22:39:36 -0000	1.16
@@ -141,7 +141,7 @@
   _screen_dirty = true;
 }
 
-void OSystem_Dreamcast::init_size(uint w, uint h)
+void OSystem_Dreamcast::initSize(uint w, uint h)
 {
   assert(w <= SCREEN_W && h <= SCREEN_H);
 





More information about the Scummvm-git-logs mailing list