aboutsummaryrefslogtreecommitdiff
path: root/engines/saga/music.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/saga/music.h')
-rw-r--r--engines/saga/music.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/saga/music.h b/engines/saga/music.h
index cb068cd835..5cce3d4c04 100644
--- a/engines/saga/music.h
+++ b/engines/saga/music.h
@@ -52,8 +52,8 @@ public:
void setVolume(int volume);
int getVolume() { return _masterVolume; }
- bool isAdlib() { return _driverType == MD_ADLIB; }
- bool isMT32() { return _driverType == MD_MT32 || _nativeMT32; }
+ bool isAdlib() { return _driverType == MT_ADLIB; }
+ bool isMT32() { return _driverType == MT_MT32 || _nativeMT32; }
void setGM(bool isGM) { _isGM = isGM; }
//MidiDriver interface implementation
@@ -78,7 +78,7 @@ protected:
MidiChannel *_channel[16];
MidiDriver *_driver;
- MidiDriverType _driverType;
+ MusicType _driverType;
byte _channelVolume[16];
bool _isGM;
bool _nativeMT32;