diff options
author | Max Horn | 2011-02-09 01:09:01 +0000 |
---|---|---|
committer | Max Horn | 2011-02-09 01:09:01 +0000 |
commit | 42ab839dd6c8a1570b232101eb97f4e54de57935 (patch) | |
tree | 3b763d8913a87482b793e0348c88b9a5f40eecc9 /engines/sci/sound/drivers | |
parent | 386203a3d6ce1abf457c9110d695408ec5f01b85 (diff) | |
download | scummvm-rg350-42ab839dd6c8a1570b232101eb97f4e54de57935.tar.gz scummvm-rg350-42ab839dd6c8a1570b232101eb97f4e54de57935.tar.bz2 scummvm-rg350-42ab839dd6c8a1570b232101eb97f4e54de57935.zip |
AUDIO: Rename sound/ dir to audio/
svn-id: r55850
Diffstat (limited to 'engines/sci/sound/drivers')
-rw-r--r-- | engines/sci/sound/drivers/adlib.cpp | 4 | ||||
-rw-r--r-- | engines/sci/sound/drivers/amigamac.cpp | 2 | ||||
-rw-r--r-- | engines/sci/sound/drivers/cms.cpp | 6 | ||||
-rw-r--r-- | engines/sci/sound/drivers/midi.cpp | 4 | ||||
-rw-r--r-- | engines/sci/sound/drivers/mididriver.h | 2 | ||||
-rw-r--r-- | engines/sci/sound/drivers/pcjr.cpp | 2 |
6 files changed, 10 insertions, 10 deletions
diff --git a/engines/sci/sound/drivers/adlib.cpp b/engines/sci/sound/drivers/adlib.cpp index 20bac4a2c0..057b7c177f 100644 --- a/engines/sci/sound/drivers/adlib.cpp +++ b/engines/sci/sound/drivers/adlib.cpp @@ -27,8 +27,8 @@ #include "common/file.h" -#include "sound/fmopl.h" -#include "sound/softsynth/emumidi.h" +#include "audio/fmopl.h" +#include "audio/softsynth/emumidi.h" #include "sci/resource.h" #include "sci/sound/drivers/mididriver.h" diff --git a/engines/sci/sound/drivers/amigamac.cpp b/engines/sci/sound/drivers/amigamac.cpp index 7cf798a27e..0ec4c283f7 100644 --- a/engines/sci/sound/drivers/amigamac.cpp +++ b/engines/sci/sound/drivers/amigamac.cpp @@ -23,7 +23,7 @@ * */ -#include "sound/softsynth/emumidi.h" +#include "audio/softsynth/emumidi.h" #include "sci/sound/drivers/mididriver.h" #include "sci/resource.h" diff --git a/engines/sci/sound/drivers/cms.cpp b/engines/sci/sound/drivers/cms.cpp index cd7b101f03..ff38e1c554 100644 --- a/engines/sci/sound/drivers/cms.cpp +++ b/engines/sci/sound/drivers/cms.cpp @@ -25,9 +25,9 @@ #include "sci/sound/drivers/mididriver.h" -#include "sound/softsynth/emumidi.h" -#include "sound/softsynth/cms.h" -#include "sound/mixer.h" +#include "audio/softsynth/emumidi.h" +#include "audio/softsynth/cms.h" +#include "audio/mixer.h" #include "sci/resource.h" diff --git a/engines/sci/sound/drivers/midi.cpp b/engines/sci/sound/drivers/midi.cpp index c274c8bce2..b9a973ad7d 100644 --- a/engines/sci/sound/drivers/midi.cpp +++ b/engines/sci/sound/drivers/midi.cpp @@ -29,8 +29,8 @@ #include "common/file.h" #include "common/memstream.h" -#include "sound/fmopl.h" -#include "sound/softsynth/emumidi.h" +#include "audio/fmopl.h" +#include "audio/softsynth/emumidi.h" #include "sci/resource.h" #include "sci/engine/features.h" diff --git a/engines/sci/sound/drivers/mididriver.h b/engines/sci/sound/drivers/mididriver.h index dabe869a8f..f745d62716 100644 --- a/engines/sci/sound/drivers/mididriver.h +++ b/engines/sci/sound/drivers/mididriver.h @@ -27,7 +27,7 @@ #define SCI_SFX_SOFTSEQ_MIDIDRIVER_H #include "sci/sci.h" -#include "sound/mididrv.h" +#include "audio/mididrv.h" #include "common/error.h" namespace Sci { diff --git a/engines/sci/sound/drivers/pcjr.cpp b/engines/sci/sound/drivers/pcjr.cpp index e1c3302fef..063332577e 100644 --- a/engines/sci/sound/drivers/pcjr.cpp +++ b/engines/sci/sound/drivers/pcjr.cpp @@ -25,7 +25,7 @@ #include "sci/sound/drivers/mididriver.h" -#include "sound/softsynth/emumidi.h" +#include "audio/softsynth/emumidi.h" namespace Sci { |