aboutsummaryrefslogtreecommitdiff
path: root/engines/m4
diff options
context:
space:
mode:
authorMax Horn2010-01-26 22:48:45 +0000
committerMax Horn2010-01-26 22:48:45 +0000
commit1565f14bc13a63aee6a42cc4fac3fe7fa39eda44 (patch)
tree41b4b65eb29718398f148dc6f7a6e131376fcc27 /engines/m4
parente0d05a482ce93e029888ef388dfb1b90b438f2ee (diff)
downloadscummvm-rg350-1565f14bc13a63aee6a42cc4fac3fe7fa39eda44.tar.gz
scummvm-rg350-1565f14bc13a63aee6a42cc4fac3fe7fa39eda44.tar.bz2
scummvm-rg350-1565f14bc13a63aee6a42cc4fac3fe7fa39eda44.zip
Moved audio stream implementations (for MP3, FLAC, etc.) to new dir sound/decoders/
svn-id: r47579
Diffstat (limited to 'engines/m4')
-rw-r--r--engines/m4/sound.cpp2
-rw-r--r--engines/m4/sound.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/engines/m4/sound.cpp b/engines/m4/sound.cpp
index 06d73a9ac7..6f83c6b6d5 100644
--- a/engines/m4/sound.cpp
+++ b/engines/m4/sound.cpp
@@ -31,7 +31,7 @@
#include "sound/audiostream.h"
#include "sound/mixer.h"
-#include "sound/raw.h"
+#include "sound/decoders/raw.h"
namespace M4 {
diff --git a/engines/m4/sound.h b/engines/m4/sound.h
index 2dae502551..caa5cfcca3 100644
--- a/engines/m4/sound.h
+++ b/engines/m4/sound.h
@@ -31,9 +31,9 @@
#include "common/file.h"
#include "common/array.h"
#include "sound/mixer.h"
-#include "sound/mp3.h"
-#include "sound/vorbis.h"
-#include "sound/flac.h"
+#include "sound/decoders/mp3.h"
+#include "sound/decoders/vorbis.h"
+#include "sound/decoders/flac.h"
namespace M4 {