aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sound
diff options
context:
space:
mode:
authorWalter van Niftrik2010-01-21 16:27:29 +0000
committerWalter van Niftrik2010-01-21 16:27:29 +0000
commit208dbf1d9ad1bcb6e365d5ce9092de962d1d5cd9 (patch)
treee589aad09debd6c8a35e8c0d01e43604d5e0b2d4 /engines/sci/sound
parent9f5e50c1304a8097a70761cc3e3c5eee7a4e3044 (diff)
downloadscummvm-rg350-208dbf1d9ad1bcb6e365d5ce9092de962d1d5cd9.tar.gz
scummvm-rg350-208dbf1d9ad1bcb6e365d5ce9092de962d1d5cd9.tar.bz2
scummvm-rg350-208dbf1d9ad1bcb6e365d5ce9092de962d1d5cd9.zip
SCI: Renamed softseq/ to drivers/
svn-id: r47418
Diffstat (limited to 'engines/sci/sound')
-rw-r--r--engines/sci/sound/drivers/adlib.cpp (renamed from engines/sci/sound/softseq/adlib.cpp)2
-rw-r--r--engines/sci/sound/drivers/amiga.cpp (renamed from engines/sci/sound/softseq/amiga.cpp)2
-rw-r--r--engines/sci/sound/drivers/map-mt32-to-gm.h (renamed from engines/sci/sound/softseq/map-mt32-to-gm.h)0
-rw-r--r--engines/sci/sound/drivers/midi.cpp (renamed from engines/sci/sound/softseq/midi.cpp)4
-rw-r--r--engines/sci/sound/drivers/mididriver.h (renamed from engines/sci/sound/softseq/mididriver.h)0
-rw-r--r--engines/sci/sound/drivers/pcjr.cpp (renamed from engines/sci/sound/softseq/pcjr.cpp)2
-rw-r--r--engines/sci/sound/iterator/core.cpp2
-rw-r--r--engines/sci/sound/iterator/iterator.h2
-rw-r--r--engines/sci/sound/iterator/iterator_internal.h2
-rw-r--r--engines/sci/sound/midiparser_sci.cpp2
-rw-r--r--engines/sci/sound/music.h2
11 files changed, 10 insertions, 10 deletions
diff --git a/engines/sci/sound/softseq/adlib.cpp b/engines/sci/sound/drivers/adlib.cpp
index 9534b5bad0..76e615dce0 100644
--- a/engines/sci/sound/softseq/adlib.cpp
+++ b/engines/sci/sound/drivers/adlib.cpp
@@ -29,7 +29,7 @@
#include "sound/softsynth/emumidi.h"
#include "sci/resource.h"
-#include "sci/sound/softseq/mididriver.h"
+#include "sci/sound/drivers/mididriver.h"
namespace Sci {
diff --git a/engines/sci/sound/softseq/amiga.cpp b/engines/sci/sound/drivers/amiga.cpp
index 7c57bb6efd..1dca092cc2 100644
--- a/engines/sci/sound/softseq/amiga.cpp
+++ b/engines/sci/sound/drivers/amiga.cpp
@@ -24,7 +24,7 @@
*/
#include "sound/softsynth/emumidi.h"
-#include "sci/sound/softseq/mididriver.h"
+#include "sci/sound/drivers/mididriver.h"
#include "common/file.h"
#include "common/frac.h"
diff --git a/engines/sci/sound/softseq/map-mt32-to-gm.h b/engines/sci/sound/drivers/map-mt32-to-gm.h
index d87ab777d7..d87ab777d7 100644
--- a/engines/sci/sound/softseq/map-mt32-to-gm.h
+++ b/engines/sci/sound/drivers/map-mt32-to-gm.h
diff --git a/engines/sci/sound/softseq/midi.cpp b/engines/sci/sound/drivers/midi.cpp
index d32d0c529b..07d2a3a222 100644
--- a/engines/sci/sound/softseq/midi.cpp
+++ b/engines/sci/sound/drivers/midi.cpp
@@ -30,8 +30,8 @@
#include "sound/softsynth/emumidi.h"
#include "sci/resource.h"
-#include "sci/sound/softseq/mididriver.h"
-#include "sci/sound/softseq/map-mt32-to-gm.h"
+#include "sci/sound/drivers/mididriver.h"
+#include "sci/sound/drivers/map-mt32-to-gm.h"
namespace Sci {
diff --git a/engines/sci/sound/softseq/mididriver.h b/engines/sci/sound/drivers/mididriver.h
index a1e6390a06..a1e6390a06 100644
--- a/engines/sci/sound/softseq/mididriver.h
+++ b/engines/sci/sound/drivers/mididriver.h
diff --git a/engines/sci/sound/softseq/pcjr.cpp b/engines/sci/sound/drivers/pcjr.cpp
index 476526b06e..eb264fb9dd 100644
--- a/engines/sci/sound/softseq/pcjr.cpp
+++ b/engines/sci/sound/drivers/pcjr.cpp
@@ -23,7 +23,7 @@
*
*/
-#include "sci/sound/softseq/mididriver.h"
+#include "sci/sound/drivers/mididriver.h"
namespace Sci {
diff --git a/engines/sci/sound/iterator/core.cpp b/engines/sci/sound/iterator/core.cpp
index 1a53333e4e..c2c110a121 100644
--- a/engines/sci/sound/iterator/core.cpp
+++ b/engines/sci/sound/iterator/core.cpp
@@ -30,7 +30,7 @@
#include "sci/sound/iterator/core.h"
#include "sci/sound/iterator/iterator.h"
-#include "sci/sound/softseq/mididriver.h"
+#include "sci/sound/drivers/mididriver.h"
#include "common/system.h"
#include "common/timer.h"
diff --git a/engines/sci/sound/iterator/iterator.h b/engines/sci/sound/iterator/iterator.h
index 92a619d80e..e5c8f50702 100644
--- a/engines/sci/sound/iterator/iterator.h
+++ b/engines/sci/sound/iterator/iterator.h
@@ -31,7 +31,7 @@
#include "sci/sci.h" // for USE_OLD_MUSIC_FUNCTIONS
#ifdef USE_OLD_MUSIC_FUNCTIONS
-#include "sci/sound/softseq/mididriver.h"
+#include "sci/sound/drivers/mididriver.h"
namespace Audio {
class AudioStream;
diff --git a/engines/sci/sound/iterator/iterator_internal.h b/engines/sci/sound/iterator/iterator_internal.h
index 8eb35d7a40..5a0f0d3ec9 100644
--- a/engines/sci/sound/iterator/iterator_internal.h
+++ b/engines/sci/sound/iterator/iterator_internal.h
@@ -30,7 +30,7 @@
#ifdef USE_OLD_MUSIC_FUNCTIONS
#include "sci/sound/iterator/iterator.h"
-#include "sci/sound/softseq/mididriver.h"
+#include "sci/sound/drivers/mididriver.h"
#include "common/array.h"
#include "common/list.h"
diff --git a/engines/sci/sound/midiparser_sci.cpp b/engines/sci/sound/midiparser_sci.cpp
index f8f6b5754d..93586fbab6 100644
--- a/engines/sci/sound/midiparser_sci.cpp
+++ b/engines/sci/sound/midiparser_sci.cpp
@@ -26,7 +26,7 @@
#include "sci/engine/kernel.h"
#include "sci/engine/state.h"
#include "sci/sound/midiparser_sci.h"
-#include "sci/sound/softseq/mididriver.h"
+#include "sci/sound/drivers/mididriver.h"
namespace Sci {
diff --git a/engines/sci/sound/music.h b/engines/sci/sound/music.h
index 26cf3ac0ab..2c3f2d96a6 100644
--- a/engines/sci/sound/music.h
+++ b/engines/sci/sound/music.h
@@ -37,7 +37,7 @@
#include "sci/sci.h"
#include "sci/resource.h"
-#include "sci/sound/softseq/mididriver.h"
+#include "sci/sound/drivers/mididriver.h"
namespace Sci {