diff options
author | Max Horn | 2009-01-30 05:25:17 +0000 |
---|---|---|
committer | Max Horn | 2009-01-30 05:25:17 +0000 |
commit | 341bc64aaf5aebe299aa736f5584d647daa781a9 (patch) | |
tree | 5fe54f83b47d4e2dd536d2d0cc4ddcafe8c13897 /sound | |
parent | 7cb437b56f95bff06b0c79be93cd619b95662346 (diff) | |
download | scummvm-rg350-341bc64aaf5aebe299aa736f5584d647daa781a9.tar.gz scummvm-rg350-341bc64aaf5aebe299aa736f5584d647daa781a9.tar.bz2 scummvm-rg350-341bc64aaf5aebe299aa736f5584d647daa781a9.zip |
do not include common/debug.h from common/util.h
svn-id: r36143
Diffstat (limited to 'sound')
-rw-r--r-- | sound/audiostream.cpp | 1 | ||||
-rw-r--r-- | sound/flac.cpp | 1 | ||||
-rw-r--r-- | sound/mods/rjp1.cpp | 1 | ||||
-rw-r--r-- | sound/mp3.cpp | 1 | ||||
-rw-r--r-- | sound/musicplugin.h | 1 | ||||
-rw-r--r-- | sound/softsynth/adlib.cpp | 1 | ||||
-rw-r--r-- | sound/softsynth/mt32.cpp | 1 | ||||
-rw-r--r-- | sound/voc.cpp | 1 | ||||
-rw-r--r-- | sound/vorbis.cpp | 1 | ||||
-rw-r--r-- | sound/wave.cpp | 1 |
10 files changed, 10 insertions, 0 deletions
diff --git a/sound/audiostream.cpp b/sound/audiostream.cpp index 6334d26e47..13ae4eedb4 100644 --- a/sound/audiostream.cpp +++ b/sound/audiostream.cpp @@ -23,6 +23,7 @@ * */ +#include "common/debug.h" #include "common/endian.h" #include "common/file.h" #include "common/list.h" diff --git a/sound/flac.cpp b/sound/flac.cpp index 7b46f0660f..5b6a04b726 100644 --- a/sound/flac.cpp +++ b/sound/flac.cpp @@ -27,6 +27,7 @@ #ifdef USE_FLAC +#include "common/debug.h" #include "common/stream.h" #include "common/util.h" diff --git a/sound/mods/rjp1.cpp b/sound/mods/rjp1.cpp index 0eb6b0d16b..fc1b49e9e9 100644 --- a/sound/mods/rjp1.cpp +++ b/sound/mods/rjp1.cpp @@ -23,6 +23,7 @@ * */ +#include "common/debug.h" #include "common/endian.h" #include "sound/mods/paula.h" diff --git a/sound/mp3.cpp b/sound/mp3.cpp index ba21436de4..c9cc5d33e7 100644 --- a/sound/mp3.cpp +++ b/sound/mp3.cpp @@ -27,6 +27,7 @@ #ifdef USE_MAD +#include "common/debug.h" #include "common/stream.h" #include "common/util.h" diff --git a/sound/musicplugin.h b/sound/musicplugin.h index cd49942b83..cc0d2ec7a8 100644 --- a/sound/musicplugin.h +++ b/sound/musicplugin.h @@ -27,6 +27,7 @@ #include "base/plugins.h" #include "sound/mididrv.h" +#include "common/list.h" /** * Music types that music drivers can implement and engines can rely on. diff --git a/sound/softsynth/adlib.cpp b/sound/softsynth/adlib.cpp index af6c9d488c..c641992e5e 100644 --- a/sound/softsynth/adlib.cpp +++ b/sound/softsynth/adlib.cpp @@ -23,6 +23,7 @@ */ #include "sound/softsynth/emumidi.h" +#include "common/debug.h" #include "common/util.h" #include "sound/fmopl.h" #include "sound/musicplugin.h" diff --git a/sound/softsynth/mt32.cpp b/sound/softsynth/mt32.cpp index 1987fee839..c64a5b6df9 100644 --- a/sound/softsynth/mt32.cpp +++ b/sound/softsynth/mt32.cpp @@ -33,6 +33,7 @@ #include "sound/mpu401.h" #include "common/config-manager.h" +#include "common/debug.h" #include "common/events.h" #include "common/file.h" #include "common/system.h" diff --git a/sound/voc.cpp b/sound/voc.cpp index ce659460f0..e0088ae0a8 100644 --- a/sound/voc.cpp +++ b/sound/voc.cpp @@ -23,6 +23,7 @@ * */ +#include "common/debug.h" #include "common/endian.h" #include "common/util.h" #include "common/stream.h" diff --git a/sound/vorbis.cpp b/sound/vorbis.cpp index da29b1b454..9658f8f257 100644 --- a/sound/vorbis.cpp +++ b/sound/vorbis.cpp @@ -27,6 +27,7 @@ #ifdef USE_VORBIS +#include "common/debug.h" #include "common/stream.h" #include "common/util.h" diff --git a/sound/wave.cpp b/sound/wave.cpp index 83cc23c35a..af7405418e 100644 --- a/sound/wave.cpp +++ b/sound/wave.cpp @@ -23,6 +23,7 @@ * */ +#include "common/debug.h" #include "common/util.h" #include "common/stream.h" |