aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/staticres_eob.cpp
diff options
context:
space:
mode:
authorathrxx2011-07-18 01:22:58 +0200
committerJohannes Schickel2011-12-26 16:18:12 +0100
commit9140fd8e91882250e23e2e4b44bf3088f3da827a (patch)
tree37deb0048ed88ffff3995ab230535f92cb16842f /engines/kyra/staticres_eob.cpp
parentdb83458330310072c743d5acc7e1a470c888ec3b (diff)
downloadscummvm-rg350-9140fd8e91882250e23e2e4b44bf3088f3da827a.tar.gz
scummvm-rg350-9140fd8e91882250e23e2e4b44bf3088f3da827a.tar.bz2
scummvm-rg350-9140fd8e91882250e23e2e4b44bf3088f3da827a.zip
KYRA: (EOB) - implement party resting
Diffstat (limited to 'engines/kyra/staticres_eob.cpp')
-rw-r--r--engines/kyra/staticres_eob.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/kyra/staticres_eob.cpp b/engines/kyra/staticres_eob.cpp
index efc5b854b8..19789bbb3c 100644
--- a/engines/kyra/staticres_eob.cpp
+++ b/engines/kyra/staticres_eob.cpp
@@ -157,7 +157,7 @@ bool StaticResource::loadEobNpcData(Common::SeekableReadStream &stream, void *&p
s->experience[0] = stream.readUint32BE();
s->experience[1] = stream.readUint32BE();
s->experience[2] = stream.readUint32BE();
- s->mageSpellsAvailabilityFlags = stream.readUint32BE();
+ s->mageSpellsAvailableFlags = stream.readUint32BE();
for (int ii = 0; ii < 27; ii++)
s->inventory[i] = stream.readUint16BE();
}
@@ -1184,6 +1184,7 @@ void DarkMoonEngine::initStaticResource() {
_npc1Strings = _staticres->loadStrings(kEob2Npc1Strings, temp);
_npc2Strings = _staticres->loadStrings(kEob2Npc2Strings, temp);
_monsterDustStrings = _staticres->loadStrings(kEob2MonsterDustStrings, temp);
+ _dranFoolsStrings = _staticres->loadStrings(kEob2DranFoolsStrings, temp);
}
void DarkMoonEngine::initSpells() {