diff options
author | Paul Gilbert | 2008-04-04 07:28:32 +0000 |
---|---|---|
committer | Paul Gilbert | 2008-04-04 07:28:32 +0000 |
commit | 84e19f913bb333dd7a89b6a91d83f2554c053e61 (patch) | |
tree | c9499dac24bf99fb1428461794be37c3c69c96d9 | |
parent | 84af9cae9d47406942ce38b9a5cdaf306e12d11e (diff) | |
download | scummvm-rg350-84e19f913bb333dd7a89b6a91d83f2554c053e61.tar.gz scummvm-rg350-84e19f913bb333dd7a89b6a91d83f2554c053e61.tar.bz2 scummvm-rg350-84e19f913bb333dd7a89b6a91d83f2554c053e61.zip |
Fixed incorrect return type of currently unused function (just in case it ever gets re-used)
svn-id: r31377
-rw-r--r-- | tools/create_lure/create_lure_dat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/create_lure/create_lure_dat.h b/tools/create_lure/create_lure_dat.h index d9903da85d..a62b706074 100644 --- a/tools/create_lure/create_lure_dat.h +++ b/tools/create_lure/create_lure_dat.h @@ -391,7 +391,7 @@ public: read(&v, sizeof(uint16)); return FROM_LE_16(v); } - uint16 readLong() { + uint32 readLong() { uint32 v; read(&v, sizeof(uint32)); return FROM_LE_32(v); |