Skip to content

Commit

Permalink
PETKA: fixed sound type in QInterfaceSequence
Browse files Browse the repository at this point in the history
  • Loading branch information
voltya committed May 29, 2020
1 parent ade9ed2 commit 06abfbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/petka/interfaces/sequence.cpp
Expand Up @@ -71,7 +71,7 @@ void InterfaceSequence::start(int id) {
}
} else {
g_vm->soundMgr()->removeSound(g_vm->resMgr()->findSoundName(bg->_fxId));
Sound *sound = g_vm->soundMgr()->addSound(g_vm->resMgr()->findSoundName(bg->_fxId), Audio::Mixer::kMusicSoundType);
Sound *sound = g_vm->soundMgr()->addSound(g_vm->resMgr()->findSoundName(bg->_fxId), Audio::Mixer::kSFXSoundType);
if (sound) {
sound->play(true);
}
Expand Down

0 comments on commit 06abfbf

Please sign in to comment.