aboutsummaryrefslogtreecommitdiff
path: root/sword1/sound.h
diff options
context:
space:
mode:
authorMax Horn2005-05-11 00:01:44 +0000
committerMax Horn2005-05-11 00:01:44 +0000
commit2de46dc8eb173ca06a107d5353f2209944284115 (patch)
tree2119f03a2883659d2b5fbbc70db31273271370e0 /sword1/sound.h
parent1a615346abab8f234c3dbd1c55e78b179bca9d87 (diff)
downloadscummvm-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 'sword1/sound.h')
-rw-r--r--sword1/sound.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sword1/sound.h b/sword1/sound.h
index 5b2469aa81..bca1b2c64a 100644
--- a/sword1/sound.h
+++ b/sword1/sound.h
@@ -44,7 +44,7 @@ namespace Sword1 {
struct QueueElement {
uint32 id, delay;
- SoundHandle handle;
+ Audio::SoundHandle handle;
};
struct RoomVol {
@@ -103,7 +103,7 @@ private:
uint32 _cowHeaderSize;
uint8 _currentCowFile;
CowMode _cowMode;
- SoundHandle _speechHandle, _fxHandle;
+ Audio::SoundHandle _speechHandle, _fxHandle;
Common::RandomSource _rnd;
QueueElement _fxQueue[MAX_FXQ_LENGTH];