aboutsummaryrefslogtreecommitdiff
path: root/sound/mididrv.h
diff options
context:
space:
mode:
Diffstat (limited to 'sound/mididrv.h')
-rw-r--r--sound/mididrv.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/sound/mididrv.h b/sound/mididrv.h
index 4a52d2530c..de17ebed4c 100644
--- a/sound/mididrv.h
+++ b/sound/mididrv.h
@@ -58,7 +58,7 @@ enum MusicType {
MT_ADLIB, // AdLib
MT_TOWNS, // FM-TOWNS
MT_PC98, // PC98
- MT_GM, // General MIDI
+ MT_GM, // General MIDI
MT_MT32, // MT-32
MT_GS // Roland GS
};
@@ -67,7 +67,7 @@ enum MusicType {
* A set of flags to be passed to detectDevice() which can be used to
* specify what kind of music driver is preferred / accepted.
*
- * The flags (except for MDT_PREFER_MIDI) indicate whether a given driver
+ * The flags (except for MDT_PREFER_MT32 and MDT_PREFER_GM) indicate whether a given driver
* type is acceptable. E.g. the TOWNS music driver could be returned by
* detectDevice if and only if MDT_TOWNS is specified.
*
@@ -82,9 +82,8 @@ enum MidiDriverFlags {
MDT_TOWNS = 1 << 4, // FM-TOWNS: Maps to MT_TOWNS
MDT_PC98 = 1 << 5, // FM-TOWNS: Maps to MT_PC98
MDT_MIDI = 1 << 6, // Real MIDI
- MDT_PREFER_MIDI = 1 << 7, // Real MIDI output is preferred
- MDT_PREFER_MT32 = 1 << 8, // MT-32 output is preferred
- MDT_PREFER_GM = 1 << 9 // GM output is preferred
+ MDT_PREFER_MT32 = 1 << 7, // MT-32 output is preferred
+ MDT_PREFER_GM = 1 << 8 // GM output is preferred
};
/**