aboutsummaryrefslogtreecommitdiff
path: root/scumm/imuse.cpp
diff options
context:
space:
mode:
authorMax Horn2003-10-03 18:33:57 +0000
committerMax Horn2003-10-03 18:33:57 +0000
commitd7660a2662be298dad3cf9b320137dac8744d456 (patch)
treec80ddb2c4fb1917660db0010bb0b3d6ed8d57b24 /scumm/imuse.cpp
parenteabeb62e20a8ed2117e19ca3bf04bb1d33637b79 (diff)
downloadscummvm-rg350-d7660a2662be298dad3cf9b320137dac8744d456.tar.gz
scummvm-rg350-d7660a2662be298dad3cf9b320137dac8744d456.tar.bz2
scummvm-rg350-d7660a2662be298dad3cf9b320137dac8744d456.zip
introduced namespace Scumm; made #include statements use scumm/ prefix explicitly
svn-id: r10571
Diffstat (limited to 'scumm/imuse.cpp')
-rw-r--r--scumm/imuse.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/scumm/imuse.cpp b/scumm/imuse.cpp
index 7f5c282938..223e32ad4f 100644
--- a/scumm/imuse.cpp
+++ b/scumm/imuse.cpp
@@ -34,6 +34,7 @@
#include "sound/mididrv.h"
+namespace Scumm {
////////////////////////////////////////
//
@@ -1782,3 +1783,5 @@ IMuse *IMuse::create(OSystem *syst, SoundMixer *mixer, MidiDriver *midi) {
IMuseInternal *engine = IMuseInternal::create(syst, mixer, midi);
return new IMuse(syst, engine);
}
+
+} // End of namespace Scumm