diff options
author | Nipun Garg | 2019-07-06 01:46:33 +0530 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:17:13 +0200 |
commit | aed071e5a0eb15980db09d95c220d7d08ebffaad (patch) | |
tree | c4bb731a8001e2c18823bf4866ea012d9544140f /engines | |
parent | 74675ba2d542ebe2ab8a4ffbe2d4d7c4cf25e56b (diff) | |
download | scummvm-rg350-aed071e5a0eb15980db09d95c220d7d08ebffaad.tar.gz scummvm-rg350-aed071e5a0eb15980db09d95c220d7d08ebffaad.tar.bz2 scummvm-rg350-aed071e5a0eb15980db09d95c220d7d08ebffaad.zip |
HDB: Add stubbed getMusicVolume()
Diffstat (limited to 'engines')
-rw-r--r-- | engines/hdb/sound.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/hdb/sound.h b/engines/hdb/sound.h index 2fc677bb1b..65c61f2962 100644 --- a/engines/hdb/sound.h +++ b/engines/hdb/sound.h @@ -1388,6 +1388,10 @@ class Sound { public: bool init(); + int getMusicVolume() { + debug(9, "STUB: Add Music System Variables"); + return 1; + } bool playSound(int index); bool playSoundEx(int index, int channel, bool loop); |