aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/eobcommon.cpp
diff options
context:
space:
mode:
authorathrxx2011-12-13 22:04:06 +0100
committerJohannes Schickel2011-12-26 16:18:17 +0100
commitc0e782fd0b2ba9de69563e8bcb4fb43e2f311b35 (patch)
tree3770bf7404fc31e427c4684a32fba1e1292adc07 /engines/kyra/eobcommon.cpp
parent53e1bf21ecced447192f75067f0232c08d24d647 (diff)
downloadscummvm-rg350-c0e782fd0b2ba9de69563e8bcb4fb43e2f311b35.tar.gz
scummvm-rg350-c0e782fd0b2ba9de69563e8bcb4fb43e2f311b35.tar.bz2
scummvm-rg350-c0e782fd0b2ba9de69563e8bcb4fb43e2f311b35.zip
KYRA: (EOB) - Start implementing EOB1 party transfer (not working yet)
(ScummVM specific solution which allows the selection of save files of all configured EOB1 targets)
Diffstat (limited to 'engines/kyra/eobcommon.cpp')
-rw-r--r--engines/kyra/eobcommon.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/kyra/eobcommon.cpp b/engines/kyra/eobcommon.cpp
index ebd26d3c18..c64f60b3fd 100644
--- a/engines/kyra/eobcommon.cpp
+++ b/engines/kyra/eobcommon.cpp
@@ -167,6 +167,7 @@ EoBCoreEngine::EoBCoreEngine(OSystem *system, const GameFlags &flags) : KyraRpgE
_expObjectAnimTbl1Size = _expObjectAnimTbl2Size = _expObjectAnimTbl3Size = _wllFlagPresetSize = _scriptTimersCount = _buttonList1Size = _buttonList2Size =
_buttonList3Size = _buttonList4Size = _buttonList5Size = _buttonList6Size = _buttonList7Size = _buttonList8Size = 0;
_inventorySlotsY = _mnDef = 0;
+ _transferStringsScummVM = 0;
_buttonDefs = 0;
_npcPreset = 0;
_chargenStatStrings = _chargenRaceSexStrings = _chargenClassStrings = _chargenAlignmentStrings = _pryDoorStrings = _warningStrings = _ripItemStrings =
@@ -463,7 +464,7 @@ Common::Error EoBCoreEngine::go() {
startupNew();
} else if (action == -3) {
// transfer party
- repeatLoop = transferParty();
+ repeatLoop = startPartyTransfer();
if (repeatLoop && !shouldQuit())
startupNew();
}