diff options
author | Max Horn | 2006-09-23 00:42:35 +0000 |
---|---|---|
committer | Max Horn | 2006-09-23 00:42:35 +0000 |
commit | 4c14cf6d1a77857e3683a1029b42ddb96e1bc80b (patch) | |
tree | 09057bd88bd471c2603139cbb06abac53625f2e4 /sound | |
parent | a3be69f4e4b1793c2ce1fe95d3d6db5ca3a7cf8b (diff) | |
download | scummvm-rg350-4c14cf6d1a77857e3683a1029b42ddb96e1bc80b.tar.gz scummvm-rg350-4c14cf6d1a77857e3683a1029b42ddb96e1bc80b.tar.bz2 scummvm-rg350-4c14cf6d1a77857e3683a1029b42ddb96e1bc80b.zip |
Moved base/engine.cpp and .h to engines/ (main motivation: helps untangle the linker dependency graph). Porters will have to update project files
svn-id: r23974
Diffstat (limited to 'sound')
-rw-r--r-- | sound/audiocd.cpp | 2 | ||||
-rw-r--r-- | sound/mididrv.cpp | 2 | ||||
-rw-r--r-- | sound/rate.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sound/audiocd.cpp b/sound/audiocd.cpp index 15b16b5e45..4c07bf4b43 100644 --- a/sound/audiocd.cpp +++ b/sound/audiocd.cpp @@ -26,7 +26,7 @@ #include "sound/mp3.h" #include "sound/vorbis.h" #include "sound/flac.h" -#include "base/engine.h" +#include "engines/engine.h" #include "common/file.h" #include "common/util.h" #include "common/system.h" diff --git a/sound/mididrv.cpp b/sound/mididrv.cpp index 1612488fd5..ea738dba0b 100644 --- a/sound/mididrv.cpp +++ b/sound/mididrv.cpp @@ -23,7 +23,7 @@ #include "common/stdafx.h" -#include "base/engine.h" +#include "engines/engine.h" #include "common/config-manager.h" #include "common/str.h" #include "common/util.h" diff --git a/sound/rate.h b/sound/rate.h index cba19786ec..809e4308f8 100644 --- a/sound/rate.h +++ b/sound/rate.h @@ -24,7 +24,7 @@ #define SOUND_RATE_H #include "common/scummsys.h" -#include "base/engine.h" +#include "engines/engine.h" class AudioStream; |