aboutsummaryrefslogtreecommitdiff
path: root/saga/music.h
diff options
context:
space:
mode:
Diffstat (limited to 'saga/music.h')
-rw-r--r--saga/music.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/saga/music.h b/saga/music.h
index 853592f4ee..d97b69fc85 100644
--- a/saga/music.h
+++ b/saga/music.h
@@ -108,6 +108,8 @@ public:
~Music(void);
void setNativeMT32(bool b) { _player->setNativeMT32(b); }
bool hasNativeMT32() { return _player->hasNativeMT32(); }
+ void setAdlib(bool b) { _adlib = b; }
+ bool hasAdlib() { return _adlib; }
void setPassThrough(bool b) { _player->setPassThrough(b); }
int play(uint32 music_rn, uint16 flags = MUSIC_DEFAULT);
@@ -128,6 +130,7 @@ private:
int _musicInitialized;
int _enabled;
bool _hasDigiMusic;
+ bool _adlib;
RSCFILE_CONTEXT *_musicContext;
const char *_musicFname;