aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/sci/sfx/soundcmd.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/engines/sci/sfx/soundcmd.cpp b/engines/sci/sfx/soundcmd.cpp
index 74efeb43d5..9137c50f80 100644
--- a/engines/sci/sfx/soundcmd.cpp
+++ b/engines/sci/sfx/soundcmd.cpp
@@ -663,10 +663,7 @@ void SoundCommandParser::cmdGetPolyphony(reg_t obj, int16 value) {
#ifdef USE_OLD_MUSIC_FUNCTIONS
_acc = make_reg(0, _state->sfx_get_player_polyphony());
#else
- if (_soundVersion <= SCI_VERSION_0_LATE)
- _acc = make_reg(0, 1); // Check if the sound driver was installed properly (always true)
- else
- _acc = make_reg(0, _music->soundGetVoices()); // Get the number of voices
+ _acc = make_reg(0, _music->soundGetVoices()); // Get the number of voices
#endif
}