aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/party.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2015-01-19 12:13:03 -0500
committerPaul Gilbert2015-01-19 12:13:03 -0500
commitec294d662e7d54a9927c2b85ec430e1519be5de7 (patch)
tree4154357408d88562bab79a80bdcc46c50ef5204b /engines/xeen/party.cpp
parent687423b3612d61a18a9854010af56f7a98e5563d (diff)
downloadscummvm-rg350-ec294d662e7d54a9927c2b85ec430e1519be5de7.tar.gz
scummvm-rg350-ec294d662e7d54a9927c2b85ec430e1519be5de7.tar.bz2
scummvm-rg350-ec294d662e7d54a9927c2b85ec430e1519be5de7.zip
XEEN: Add extra ending code for pausing turns
Diffstat (limited to 'engines/xeen/party.cpp')
-rw-r--r--engines/xeen/party.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/xeen/party.cpp b/engines/xeen/party.cpp
index 6d5cc22ffa..4571bbe518 100644
--- a/engines/xeen/party.cpp
+++ b/engines/xeen/party.cpp
@@ -198,7 +198,7 @@ Party::Party(XeenEngine *vm): _vm(vm) {
_cloudsEnd = false;
_darkSideEnd = false;
_worldEnd = false;
- hour_maybe = 0;
+ _ctr24 = 0;
_day = 0;
_year = 0;
_minutes = 0;
@@ -273,7 +273,7 @@ void Party::synchronize(Common::Serializer &s) {
s.syncAsUint16LE(_cloudsEnd);
s.syncAsUint16LE(_darkSideEnd);
s.syncAsUint16LE(_worldEnd);
- s.syncAsUint16LE(hour_maybe);
+ s.syncAsUint16LE(_ctr24);
s.syncAsUint16LE(_day);
s.syncAsUint16LE(_year);
s.syncAsUint16LE(_minutes);