mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-05 00:36:57 +00:00
TITANIC: Fix using brain pieces in the wrong slots
This commit is contained in:
parent
2d1304c699
commit
974f78008d
@ -87,15 +87,15 @@ bool CBrainSlot::AddHeadPieceMsg(CAddHeadPieceMsg *msg) {
|
||||
if (addMsg._value != "NULL")
|
||||
addMsg.execute("TitaniaControl");
|
||||
|
||||
if (addMsg._value == "OlfactoryCentre")
|
||||
if (msg->_value == "OlfactoryCentre")
|
||||
loadFrame(2);
|
||||
else if (addMsg._value == "AuditoryCentre")
|
||||
else if (msg->_value == "AuditoryCentre")
|
||||
loadFrame(1);
|
||||
else if (addMsg._value == "SpeechCentre")
|
||||
else if (msg->_value == "SpeechCentre")
|
||||
loadFrame(3);
|
||||
else if (addMsg._value == "VisionCentre")
|
||||
else if (msg->_value == "VisionCentre")
|
||||
loadFrame(4);
|
||||
else if (addMsg._value == "CentralCore") {
|
||||
else if (msg->_value == "CentralCore") {
|
||||
CActMsg actMsg("Insert Central Core");
|
||||
actMsg.execute("CentralCoreSlot");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user