diff options
author | Paul Gilbert | 2012-05-20 13:56:33 +1000 |
---|---|---|
committer | Paul Gilbert | 2012-05-20 13:56:33 +1000 |
commit | 6f6486e5896d8af782aaba408b1fe5ae53021c7f (patch) | |
tree | 4e02b08ee4f71606c3c9845ffca57b1f19a3a8c9 /engines/tony | |
parent | 0450275c44c8c001d56cf37c78db6951ecaa4314 (diff) | |
download | scummvm-rg350-6f6486e5896d8af782aaba408b1fe5ae53021c7f.tar.gz scummvm-rg350-6f6486e5896d8af782aaba408b1fe5ae53021c7f.tar.bz2 scummvm-rg350-6f6486e5896d8af782aaba408b1fe5ae53021c7f.zip |
TONY: Endian fix
Diffstat (limited to 'engines/tony')
-rw-r--r-- | engines/tony/loc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tony/loc.cpp b/engines/tony/loc.cpp index 722116c47c..ef59b3f916 100644 --- a/engines/tony/loc.cpp +++ b/engines/tony/loc.cpp @@ -1923,7 +1923,7 @@ void RMGameBoxes::LoadState(byte *state) { int nloc, nbox; // Load number of items - nloc = *(int*)state; + nloc = READ_LE_UINT32(state); state += 4; assert(nloc <= m_nLocBoxes); |