diff options
author | peter1138 <peter1138@openttd.org> | 2011-01-04 12:22:27 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2011-01-04 12:22:27 +0000 |
commit | 1b61d234a15115144c84e2dc94499afea48b7f21 (patch) | |
tree | ffc431a9440eb0ebf3080f3772538f379dabb0b2 | |
parent | 3408814169a85c31f683e17c3c6ebb74189fcdf4 (diff) | |
download | openttd-1b61d234a15115144c84e2dc94499afea48b7f21.tar.xz |
(svn r21710) -Fix (r8128): Update oldloader for change in vehicle cur_image size.
-rw-r--r-- | src/saveload/oldloader_sl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/saveload/oldloader_sl.cpp b/src/saveload/oldloader_sl.cpp index b360a2da6..68eb22564 100644 --- a/src/saveload/oldloader_sl.cpp +++ b/src/saveload/oldloader_sl.cpp @@ -1146,7 +1146,7 @@ static const OldChunks vehicle_chunk[] = { OCL_SVAR( OC_UINT8, Vehicle, owner ), OCL_SVAR( OC_TILE, Vehicle, tile ), - OCL_SVAR( OC_UINT16, Vehicle, cur_image ), + OCL_SVAR( OC_FILE_U16 | OC_VAR_U32, Vehicle, cur_image ), OCL_NULL( 8 ), ///< Vehicle sprite box, calculated automatically |