diff options
author | Chris Apers | 2006-02-11 17:18:18 +0000 |
---|---|---|
committer | Chris Apers | 2006-02-11 17:18:18 +0000 |
commit | cc07cd38370f73306c6676c86fb922430f10cb34 (patch) | |
tree | 2c2817d7e56886bd13412ba7c048b7602ffb43a2 | |
parent | a76f3f1b6e768ffff3716ed4476bdcc61b0b905c (diff) | |
download | scummvm-rg350-cc07cd38370f73306c6676c86fb922430f10cb34.tar.gz scummvm-rg350-cc07cd38370f73306c6676c86fb922430f10cb34.tar.bz2 scummvm-rg350-cc07cd38370f73306c6676c86fb922430f10cb34.zip |
Fixed odd aligned read
svn-id: r20553
-rw-r--r-- | lure/res_struct.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lure/res_struct.cpp b/lure/res_struct.cpp index a90e86d0bc..db01a471cd 100644 --- a/lure/res_struct.cpp +++ b/lure/res_struct.cpp @@ -112,7 +112,7 @@ RoomExitJoinData::RoomExitJoinData(RoomExitJoinRecord *rec) { h2DestFrame = rec->h2DestFrame; h2Unknown = READ_LE_UINT16(&rec->h2Unknown); blocked = rec->blocked; - unknown = rec->unknown; + unknown = READ_LE_UINT32(&rec->unknown); } // Hotspot action record |