aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorFlorian Kagerer2010-06-25 22:37:19 +0000
committerFlorian Kagerer2010-06-25 22:37:19 +0000
commit56c6907477095d404523303330d4ceff9889a3be (patch)
tree55bfa4d7d9e899771c422c327e90521ca4185020 /sound
parentfc4fa25ec4272f6117ca32e3c3998b15de30eca3 (diff)
downloadscummvm-rg350-56c6907477095d404523303330d4ceff9889a3be.tar.gz
scummvm-rg350-56c6907477095d404523303330d4ceff9889a3be.tar.bz2
scummvm-rg350-56c6907477095d404523303330d4ceff9889a3be.zip
AUDIO: fix comments
svn-id: r50293
Diffstat (limited to 'sound')
-rw-r--r--sound/mididrv.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/sound/mididrv.h b/sound/mididrv.h
index de17ebed4c..67a2972f17 100644
--- a/sound/mididrv.h
+++ b/sound/mididrv.h
@@ -111,22 +111,19 @@ public:
static uint32 musicType2GUIO(uint32 musicType);
- /** Create music driver matching the given device handle, or MT_AUTO if there is no match. */
+ /** Create music driver matching the given device handle, or NULL if there is no match. */
static MidiDriver *createMidi(DeviceHandle handle);
- /** Returnd device handle based on the present devices and the flags parameter.
- / * Returns NULl if the matching device is the null or auto device. */
+ /** Returns device handle based on the present devices and the flags parameter. */
static DeviceHandle detectDevice(int flags);
- /**
- * Find the music driver matching the given driver name/description.
- */
+ /** Find the music driver matching the given driver name/description. */
static DeviceHandle getDeviceHandle(const Common::String &identifier);
/** Get the music type matching the given device handle, or MT_AUTO if there is no match. */
static MusicType getMusicType(DeviceHandle handle);
- /** Get the device string matching the given device handle and the given type. */
+ /** Get the device description string matching the given device handle and the given type. */
static Common::String getDeviceString(DeviceHandle handle, DeviceStringType type);
private:
@@ -134,7 +131,7 @@ private:
// we use this to force getMusicType() to return MT_MT32 so that we don't
// have to rely on the 'True Roland MT-32' config manager setting (since nobody
// would possibly think about activating 'True Roland MT-32' when he has set
- // 'Music Driver' to '>default>')
+ // 'Music Driver' to '<default>')
static bool _forceTypeMT32;
public: