aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNipun Garg2019-07-06 01:46:33 +0530
committerEugene Sandulenko2019-09-03 17:17:13 +0200
commitaed071e5a0eb15980db09d95c220d7d08ebffaad (patch)
treec4bb731a8001e2c18823bf4866ea012d9544140f
parent74675ba2d542ebe2ab8a4ffbe2d4d7c4cf25e56b (diff)
downloadscummvm-rg350-aed071e5a0eb15980db09d95c220d7d08ebffaad.tar.gz
scummvm-rg350-aed071e5a0eb15980db09d95c220d7d08ebffaad.tar.bz2
scummvm-rg350-aed071e5a0eb15980db09d95c220d7d08ebffaad.zip
HDB: Add stubbed getMusicVolume()
-rw-r--r--engines/hdb/sound.h4
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);