aboutsummaryrefslogtreecommitdiff
path: root/gob
diff options
context:
space:
mode:
Diffstat (limited to 'gob')
-rw-r--r--gob/sound.cpp2
-rw-r--r--gob/sound.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/gob/sound.cpp b/gob/sound.cpp
index 018fc48ab2..169f4be382 100644
--- a/gob/sound.cpp
+++ b/gob/sound.cpp
@@ -85,7 +85,7 @@ int SquareWaveStream::readBuffer(int16 *buffer, const int numSamples) {
}
SquareWaveStream speakerStream;
-SoundHandle speakerHandle;
+Audio::SoundHandle speakerHandle;
Snd_SoundDesc *snd_loopingSounds[5]; // Should be enough
void snd_initSound(void) {
diff --git a/gob/sound.h b/gob/sound.h
index cc913795da..8ff39b2d2f 100644
--- a/gob/sound.h
+++ b/gob/sound.h
@@ -44,7 +44,7 @@ extern CleanupFuncPtr snd_cleanupFunc;
void snd_writeAdlib(int16 port, int16 data);
typedef struct Snd_SoundDesc {
- SoundHandle handle;
+ Audio::SoundHandle handle;
char *data;
int32 size;
int16 repCount;