VOYEUR: Fix selection of apartment music after initial phone call ends

This commit is contained in:
Paul Gilbert 2014-01-16 22:11:41 -05:00
parent b0e397551c
commit c1657dc278

View file

@ -1072,7 +1072,7 @@ int ThreadResource::doApt() {
_vm->_eventsManager.getMouseInfo();
if (!_vm->_soundManager.getVOCStatus()) {
// Previous sound ended, so start up a new one
_vm->_currentVocId = _vm->getRandomNumber(4) + 151;
_vm->_currentVocId = 151 - _vm->getRandomNumber(4);
_vm->_soundManager.startVOCPlay(_vm->_soundManager.getVOCFileName(_vm->_currentVocId));
}