diff options
| author | Max Horn | 2005-05-11 00:01:44 +0000 |
|---|---|---|
| committer | Max Horn | 2005-05-11 00:01:44 +0000 |
| commit | 2de46dc8eb173ca06a107d5353f2209944284115 (patch) | |
| tree | 2119f03a2883659d2b5fbbc70db31273271370e0 /gob | |
| parent | 1a615346abab8f234c3dbd1c55e78b179bca9d87 (diff) | |
| download | scummvm-rg350-2de46dc8eb173ca06a107d5353f2209944284115.tar.gz scummvm-rg350-2de46dc8eb173ca06a107d5353f2209944284115.tar.bz2 scummvm-rg350-2de46dc8eb173ca06a107d5353f2209944284115.zip | |
Moved some more stuff to namespace Audio (enough for tonight)
svn-id: r18040
Diffstat (limited to 'gob')
| -rw-r--r-- | gob/sound.cpp | 2 | ||||
| -rw-r--r-- | gob/sound.h | 2 |
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; |
