diff options
author | Paul Gilbert | 2014-02-19 23:21:05 -0500 |
---|---|---|
committer | Paul Gilbert | 2014-02-19 23:21:05 -0500 |
commit | de384bae2ef1b904224b0fe00326e5a0597aafb6 (patch) | |
tree | bcc1f56dfb9c729b5de0812fcb5e4412007e09b8 /engines | |
parent | 58bb1383d0b11d357128ca2b0a7634f091c0fb5b (diff) | |
download | scummvm-rg350-de384bae2ef1b904224b0fe00326e5a0597aafb6.tar.gz scummvm-rg350-de384bae2ef1b904224b0fe00326e5a0597aafb6.tar.bz2 scummvm-rg350-de384bae2ef1b904224b0fe00326e5a0597aafb6.zip |
MADS: Moved sound_nebular file into new nebular/ folder
Diffstat (limited to 'engines')
-rw-r--r-- | engines/mads/module.mk | 2 | ||||
-rw-r--r-- | engines/mads/nebular/sound_nebular.cpp (renamed from engines/mads/sound_nebular.cpp) | 2 | ||||
-rw-r--r-- | engines/mads/nebular/sound_nebular.h (renamed from engines/mads/sound_nebular.h) | 0 | ||||
-rw-r--r-- | engines/mads/sound.h | 2 |
4 files changed, 3 insertions, 3 deletions
diff --git a/engines/mads/module.mk b/engines/mads/module.mk index 3f78103f6d..9d115b8b6e 100644 --- a/engines/mads/module.mk +++ b/engines/mads/module.mk @@ -3,6 +3,7 @@ MODULE := engines/mads MODULE_OBJS := \ nebular/dialogs_nebular.o \ nebular/game_nebular.o \ + nebular/sound_nebular.o \ compression.o \ detection.o \ events.o \ @@ -15,7 +16,6 @@ MODULE_OBJS := \ palette.o \ resources.o \ sound.o \ - sound_nebular.o \ user_interface.o # This module can be built as a plugin diff --git a/engines/mads/sound_nebular.cpp b/engines/mads/nebular/sound_nebular.cpp index 7c1410c24c..9c3ac61f2d 100644 --- a/engines/mads/sound_nebular.cpp +++ b/engines/mads/nebular/sound_nebular.cpp @@ -26,7 +26,7 @@ #include "common/debug.h" #include "common/memstream.h" #include "mads/sound.h" -#include "mads/sound_nebular.h" +#include "mads/nebular/sound_nebular.h" namespace MADS { diff --git a/engines/mads/sound_nebular.h b/engines/mads/nebular/sound_nebular.h index 11836e6559..11836e6559 100644 --- a/engines/mads/sound_nebular.h +++ b/engines/mads/nebular/sound_nebular.h diff --git a/engines/mads/sound.h b/engines/mads/sound.h index cbd6511518..7a9a4ef29b 100644 --- a/engines/mads/sound.h +++ b/engines/mads/sound.h @@ -26,7 +26,7 @@ #include "common/scummsys.h" #include "audio/audiostream.h" #include "audio/mixer.h" -#include "mads/sound_nebular.h" +#include "mads/nebular/sound_nebular.h" namespace MADS { |