aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/party.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2018-04-07 16:55:07 -0400
committerPaul Gilbert2018-04-07 16:55:07 -0400
commitf1cfc9e69606fb100d85609b0a29e99a8ba4f55f (patch)
treee3ef0e935bc41b767bdeeb7b024a0736bea862b2 /engines/xeen/party.cpp
parenta42ca33a1cd43e804018d88d5c272859ddecb878 (diff)
downloadscummvm-rg350-f1cfc9e69606fb100d85609b0a29e99a8ba4f55f.tar.gz
scummvm-rg350-f1cfc9e69606fb100d85609b0a29e99a8ba4f55f.tar.bz2
scummvm-rg350-f1cfc9e69606fb100d85609b0a29e99a8ba4f55f.zip
XEEN: Cleanup of game completion flags
Diffstat (limited to 'engines/xeen/party.cpp')
-rw-r--r--engines/xeen/party.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/xeen/party.cpp b/engines/xeen/party.cpp
index 50c5992129..cb8072f060 100644
--- a/engines/xeen/party.cpp
+++ b/engines/xeen/party.cpp
@@ -212,9 +212,9 @@ Party::Party(XeenEngine *vm) {
_holyBonus = 0;
_heroism = 0;
_difficulty = ADVENTURER;
- _cloudsEnd = false;
- _darkSideEnd = false;
- _worldEnd = false;
+ _cloudsCompleted = false;
+ _darkSideCompleted = false;
+ _worldCompleted = false;
_ctr24 = 0;
_day = 0;
_year = 0;
@@ -299,9 +299,9 @@ void Party::synchronize(Common::Serializer &s) {
_blacksmithWares.synchronize(s, 0);
- s.syncAsUint16LE(_cloudsEnd);
- s.syncAsUint16LE(_darkSideEnd);
- s.syncAsUint16LE(_worldEnd);
+ s.syncAsUint16LE(_cloudsCompleted);
+ s.syncAsUint16LE(_darkSideCompleted);
+ s.syncAsUint16LE(_worldCompleted);
s.syncAsUint16LE(_ctr24);
s.syncAsUint16LE(_day);
s.syncAsUint16LE(_year);