diff options
author | Max Horn | 2011-03-23 12:58:01 +0100 |
---|---|---|
committer | Max Horn | 2011-03-23 15:25:47 +0100 |
commit | a539be098d3b5598422e52a65457c68b43042e4a (patch) | |
tree | 64690ad14780b9b6137d2164c4a31d2e30848187 /audio | |
parent | 2bc842dcee9552b302ac1acc927e6305ab6fad19 (diff) | |
download | scummvm-rg350-a539be098d3b5598422e52a65457c68b43042e4a.tar.gz scummvm-rg350-a539be098d3b5598422e52a65457c68b43042e4a.tar.bz2 scummvm-rg350-a539be098d3b5598422e52a65457c68b43042e4a.zip |
AUDIO: Update some comments, remove some obsolete ones
Diffstat (limited to 'audio')
-rw-r--r-- | audio/mididrv.h | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/audio/mididrv.h b/audio/mididrv.h index f635472f0e..8323553676 100644 --- a/audio/mididrv.h +++ b/audio/mididrv.h @@ -38,15 +38,6 @@ namespace Audio { namespace Common { class String; } /** - * Music Driver Types, used to uniquely identify each music driver. - * - * The pseudo drivers are listed first, then all native drivers, - * then all other MIDI drivers, and finally the non-MIDI drivers. - * - * @todo Rename MidiDriverType to MusicDriverType - */ - -/** * Music types that music drivers can implement and engines can rely on. */ enum MusicType { @@ -84,8 +75,8 @@ enum MusicType { */ enum MidiDriverFlags { MDT_NONE = 0, - MDT_PCSPK = 1 << 0, // PC Speaker: Maps to MD_PCSPK and MD_PCJR - MDT_CMS = 1 << 1, // Creative Music System / Gameblaster: Maps to MD_CMS + MDT_PCSPK = 1 << 0, // PC Speaker: Maps to MT_PCSPK and MT_PCJR + MDT_CMS = 1 << 1, // Creative Music System / Gameblaster: Maps to MT_CMS MDT_PCJR = 1 << 2, // Tandy/PC Junior driver MDT_ADLIB = 1 << 3, // AdLib: Maps to MT_ADLIB MDT_C64 = 1 << 4, @@ -99,14 +90,6 @@ enum MidiDriverFlags { }; /** - * Abstract description of a MIDI driver. Used by the config file and command - * line parsing code, and also to be able to give the user a list of available - * drivers. - * - * @todo Rename MidiDriverType to MusicDriverType - */ - -/** * Abstract MIDI Driver Class * * @todo Rename MidiDriver to MusicDriver |