diff options
author | Filippos Karapetis | 2014-05-08 00:52:22 +0300 |
---|---|---|
committer | Filippos Karapetis | 2014-05-08 00:52:22 +0300 |
commit | 3fc8cd0a031dfb31c5bbb9966e650a5cce27822e (patch) | |
tree | 6ad3dbd7c0dfbfe3bb12aa4e1912a36e7f03db16 /engines/mads | |
parent | 00dd6a5e2a333e460d39dc429d9b00d04bfe68b1 (diff) | |
download | scummvm-rg350-3fc8cd0a031dfb31c5bbb9966e650a5cce27822e.tar.gz scummvm-rg350-3fc8cd0a031dfb31c5bbb9966e650a5cce27822e.tar.bz2 scummvm-rg350-3fc8cd0a031dfb31c5bbb9966e650a5cce27822e.zip |
MADS: Fix typo in NebularGlobals::synchronize()
Diffstat (limited to 'engines/mads')
-rw-r--r-- | engines/mads/nebular/globals_nebular.cpp | 2 |
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); |