aboutsummaryrefslogtreecommitdiff
path: root/simon/midi.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'simon/midi.cpp')
-rw-r--r--simon/midi.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/simon/midi.cpp b/simon/midi.cpp
index 04bf64c4da..dc8644e0e7 100644
--- a/simon/midi.cpp
+++ b/simon/midi.cpp
@@ -27,13 +27,15 @@
#include "sound/mixer.h"
#include "simon/simon.h"
+namespace Simon {
+
+
// MidiParser_S1D is not considered part of the standard
// MidiParser suite, but we still try to mask its details
// and just provide a factory function.
extern MidiParser *MidiParser_createS1D();
-
// Instrument mapping for MT32 tracks emulated under GM.
static const byte mt32_to_gm[128] = {
// 0 1 2 3 4 5 6 7 8 9 A B C D E F
@@ -555,3 +557,5 @@ void MidiPlayer::loadS1D (File *in, bool sfx) {
p->parser = parser; // That plugs the power cord into the wall
_system->unlock_mutex(_mutex);
}
+
+} // End of namespace Simon