mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-21 19:51:49 +00:00
TOON: Fixed bug #3085971 with missing "fail" sound sfx
Bug #3085971: "TOON: Missing sfx for invalid Flux request" svn-id: r53260
This commit is contained in:
parent
be44216e5c
commit
4c4e821326
@ -1227,7 +1227,9 @@ void ToonEngine::clickEvent() {
|
||||
if (_currentHotspotItem == -4) {
|
||||
if (_gameState->_mouseState >= 0) {
|
||||
if (leftButton)
|
||||
handleInventoryOnInventory(0, _gameState->_mouseState);
|
||||
if (!handleInventoryOnInventory(0, _gameState->_mouseState)) {
|
||||
playSoundWrong();
|
||||
}
|
||||
return;
|
||||
}
|
||||
}
|
||||
@ -1323,6 +1325,9 @@ void ToonEngine::clickEvent() {
|
||||
case 11:
|
||||
sayLines(3, argument);
|
||||
break;
|
||||
default:
|
||||
playSoundWrong();
|
||||
return;
|
||||
}
|
||||
|
||||
if (result == 3) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user