aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilippos Karapetis2014-05-08 00:52:22 +0300
committerFilippos Karapetis2014-05-08 00:52:22 +0300
commit3fc8cd0a031dfb31c5bbb9966e650a5cce27822e (patch)
tree6ad3dbd7c0dfbfe3bb12aa4e1912a36e7f03db16
parent00dd6a5e2a333e460d39dc429d9b00d04bfe68b1 (diff)
downloadscummvm-rg350-3fc8cd0a031dfb31c5bbb9966e650a5cce27822e.tar.gz
scummvm-rg350-3fc8cd0a031dfb31c5bbb9966e650a5cce27822e.tar.bz2
scummvm-rg350-3fc8cd0a031dfb31c5bbb9966e650a5cce27822e.zip
MADS: Fix typo in NebularGlobals::synchronize()
-rw-r--r--engines/mads/nebular/globals_nebular.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mads/nebular/globals_nebular.cpp b/engines/mads/nebular/globals_nebular.cpp
index d839d29d9a..2e50794b60 100644
--- a/engines/mads/nebular/globals_nebular.cpp
+++ b/engines/mads/nebular/globals_nebular.cpp
@@ -42,7 +42,7 @@ NebularGlobals::NebularGlobals(): Globals() {
void NebularGlobals::synchronize(Common::Serializer &s) {
Globals::synchronize(s);
- s.syncAsUint32BE(_timebombClock);
+ s.syncAsUint32LE(_timebombClock);
s.syncAsUint32LE(_timebombTimer);
_spriteIndexes.synchronize(s);
_sequenceIndexes.synchronize(s);