diff options
| author | Nipun Garg | 2019-07-11 02:23:48 +0530 |
|---|---|---|
| committer | Eugene Sandulenko | 2019-09-03 17:17:17 +0200 |
| commit | 6f4e80b836823a5b4731dc3a29c0e8bc9e4ce92e (patch) | |
| tree | 314fb163f8dfede8a8665430a0be704e68b4e92d | |
| parent | 29d1c96f0e42cd8411b6523c57544ad34e7f38f5 (diff) | |
| download | scummvm-rg350-6f4e80b836823a5b4731dc3a29c0e8bc9e4ce92e.tar.gz scummvm-rg350-6f4e80b836823a5b4731dc3a29c0e8bc9e4ce92e.tar.bz2 scummvm-rg350-6f4e80b836823a5b4731dc3a29c0e8bc9e4ce92e.zip | |
HDB: Add stubbed Sound functions
| -rw-r--r-- | engines/hdb/sound.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/engines/hdb/sound.h b/engines/hdb/sound.h index 6574562d1b..8e7b0525a8 100644 --- a/engines/hdb/sound.h +++ b/engines/hdb/sound.h @@ -1395,6 +1395,14 @@ public: debug(9, "STUB: Add Music System Variables"); return 1; } + int getSFXVolume() { + debug(9, "STUB: Add Music System Variables"); + return 1; + } + int getVoiceStatus() { + debug(9, "STUB: Add Music System Variables"); + return 1; + } bool playSound(int index); bool playSoundEx(int index, int channel, bool loop); |
