diff options
| author | Max Horn | 2010-01-26 22:48:45 +0000 |
|---|---|---|
| committer | Max Horn | 2010-01-26 22:48:45 +0000 |
| commit | 1565f14bc13a63aee6a42cc4fac3fe7fa39eda44 (patch) | |
| tree | 41b4b65eb29718398f148dc6f7a6e131376fcc27 /engines/sword2 | |
| parent | e0d05a482ce93e029888ef388dfb1b90b438f2ee (diff) | |
| download | scummvm-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/sword2')
| -rw-r--r-- | engines/sword2/music.cpp | 10 | ||||
| -rw-r--r-- | engines/sword2/sound.cpp | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/engines/sword2/music.cpp b/engines/sword2/music.cpp index e5936bb958..a7d5bf50c2 100644 --- a/engines/sword2/music.cpp +++ b/engines/sword2/music.cpp @@ -35,12 +35,12 @@ #include "common/file.h" #include "common/system.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" +#include "sound/decoders/wave.h" +#include "sound/decoders/vag.h" #include "sound/rate.h" -#include "sound/wave.h" -#include "sound/vag.h" #include "sword2/sword2.h" #include "sword2/defs.h" diff --git a/engines/sword2/sound.cpp b/engines/sword2/sound.cpp index 2d02a2d3ba..5de38fde9c 100644 --- a/engines/sword2/sound.cpp +++ b/engines/sword2/sound.cpp @@ -46,8 +46,8 @@ #include "sword2/resman.h" #include "sword2/sound.h" -#include "sound/wave.h" -#include "sound/vag.h" +#include "sound/decoders/wave.h" +#include "sound/decoders/vag.h" namespace Sword2 { |
