diff options
author | Matthew Hoops | 2011-10-15 22:15:10 -0400 |
---|---|---|
committer | Matthew Hoops | 2011-10-15 22:15:10 -0400 |
commit | 4b9914104eece973f153f608b259e47f67d6156c (patch) | |
tree | ce7848b72b0a8f276362afa01e6866fdd954e065 /engines | |
parent | 1c949d375a4f0dabb179e0e035bb3dbf8c059abf (diff) | |
download | scummvm-rg350-4b9914104eece973f153f608b259e47f67d6156c.tar.gz scummvm-rg350-4b9914104eece973f153f608b259e47f67d6156c.tar.bz2 scummvm-rg350-4b9914104eece973f153f608b259e47f67d6156c.zip |
PEGASUS: Remove the unused biochip AI warnings from WSC
WSC is now completable using the violent method
Diffstat (limited to 'engines')
-rwxr-xr-x | engines/pegasus/neighborhood/wsc/wsc.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/engines/pegasus/neighborhood/wsc/wsc.cpp b/engines/pegasus/neighborhood/wsc/wsc.cpp index 82fbdb815c..cc12a2fe69 100755 --- a/engines/pegasus/neighborhood/wsc/wsc.cpp +++ b/engines/pegasus/neighborhood/wsc/wsc.cpp @@ -1918,14 +1918,18 @@ void WSC::receiveNotification(Notification *notification, const tNotificationFla 372 + kNavAreaLeft, 149 + kNavAreaTop)); setCurrentActivation(kActivationRobotDead); GameState.setWSCRobotDead(true); - g_AIArea->playAIMovie(kRightAreaSignature, "Images/AI/WSC/XN59WD", false, kWarningInterruption); + + // Unused? + //g_AIArea->playAIMovie(kRightAreaSignature, "Images/AI/WSC/XN59WD", false, kWarningInterruption); break; case kW98RobotGassed: item = (Item *)g_allItems.findItemByID(kArgonCanister); _vm->addItemToInventory((InventoryItem *)item); setCurrentActivation(kActivationRobotDead); GameState.setWSCRobotDead(true); - g_AIArea->playAIMovie(kRightAreaSignature, "Images/AI/WSC/XN59WD", false, kWarningInterruption); + + // Unused? + //g_AIArea->playAIMovie(kRightAreaSignature, "Images/AI/WSC/XN59WD", false, kWarningInterruption); break; case kW98RobotHeadOpensLight: case kW98RobotHeadOpensDark: |