diff options
author | Max Horn | 2003-05-29 22:34:35 +0000 |
---|---|---|
committer | Max Horn | 2003-05-29 22:34:35 +0000 |
commit | e08d4f072e0939e97b3e6b7e1b2dd7cbaf51d939 (patch) | |
tree | 7cfaf7553bc2f0bb3a7f0ac092cf85a287288879 /backends/wince | |
parent | 54b8fd8ce1488c82a8e123586dfce9000e3ba6c7 (diff) | |
download | scummvm-rg350-e08d4f072e0939e97b3e6b7e1b2dd7cbaf51d939.tar.gz scummvm-rg350-e08d4f072e0939e97b3e6b7e1b2dd7cbaf51d939.tar.bz2 scummvm-rg350-e08d4f072e0939e97b3e6b7e1b2dd7cbaf51d939.zip |
more OSystem docs & cleanup
svn-id: r8118
Diffstat (limited to 'backends/wince')
-rw-r--r-- | backends/wince/wince.cpp | 2 | ||||
-rw-r--r-- | backends/wince/wince.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/backends/wince/wince.cpp b/backends/wince/wince.cpp index 6db546172e..967b6d9070 100644 --- a/backends/wince/wince.cpp +++ b/backends/wince/wince.cpp @@ -1673,7 +1673,7 @@ void own_soundProc(void *buffer, byte *samples, int len) { memset(samples, 0, len); } -bool OSystem_WINCE3::set_sound_proc(void *param, SoundProc *proc, byte format) { +bool OSystem_WINCE3::set_sound_proc(SoundProc *proc, void *param, SoundFormat format) { SDL_AudioSpec desired; /* only one format supported at the moment */ diff --git a/backends/wince/wince.h b/backends/wince/wince.h index 9af0e4e81b..1b369caeed 100644 --- a/backends/wince/wince.h +++ b/backends/wince/wince.h @@ -116,7 +116,7 @@ public: bool poll_event(Event *event); // Set function that generates samples - bool set_sound_proc(void *param, SoundProc *proc, byte sound); + bool set_sound_proc(SoundProc *proc, void *param, SoundFormat format); // Poll cdrom status // Returns true if cd audio is playing |