aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sfx/pcm_device.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/sfx/pcm_device.cpp')
-rw-r--r--engines/sci/sfx/pcm_device.cpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/engines/sci/sfx/pcm_device.cpp b/engines/sci/sfx/pcm_device.cpp
index e6bb5f9c25..5056740b64 100644
--- a/engines/sci/sfx/pcm_device.cpp
+++ b/engines/sci/sfx/pcm_device.cpp
@@ -29,9 +29,6 @@ static int pcmout_scummvm_init(sfx_pcm_device_t *self) {
return SFX_OK;
}
-static void pcmout_scummvm_exit(sfx_pcm_device_t *self) {
-}
-
static int pcmout_scummvm_output(sfx_pcm_device_t *self, byte *buf, int count,
sfx_timestamp_t *timestamp) {
@@ -46,15 +43,9 @@ static int pcmout_scummvm_output(sfx_pcm_device_t *self, byte *buf, int count,
sfx_pcm_device_t sfx_pcm_driver_scummvm = {
- "ScummVM",
- "0.1",
&pcmout_scummvm_init,
- &pcmout_scummvm_exit,
- NULL,
&pcmout_scummvm_output,
NULL,
{0, 0, 0},
- 0,
- NULL,
- NULL
+ 0
};