Simon namespace

svn-id: r10574
This commit is contained in:
Max Horn 2003-10-03 19:42:27 +00:00
parent 5fa23e5fee
commit a4b72c9d6e
16 changed files with 72 additions and 3 deletions

View file

@ -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