diff options
author | erorcun <erayorcunus@gmail.com> | 2020-10-18 18:37:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-18 18:37:49 +0200 |
commit | 497c1792455a13f7ea0750274c9ba4b3e26830db (patch) | |
tree | ce2c434d0aba2a12b27d04d9ccf70502f05cf4c5 /src/vehicles/Boat.cpp | |
parent | Merge branch 'miami' of https://github.com/GTAmodding/re3 into miami (diff) | |
parent | fix in ped attractor (diff) | |
download | re3-497c1792455a13f7ea0750274c9ba4b3e26830db.tar re3-497c1792455a13f7ea0750274c9ba4b3e26830db.tar.gz re3-497c1792455a13f7ea0750274c9ba4b3e26830db.tar.bz2 re3-497c1792455a13f7ea0750274c9ba4b3e26830db.tar.lz re3-497c1792455a13f7ea0750274c9ba4b3e26830db.tar.xz re3-497c1792455a13f7ea0750274c9ba4b3e26830db.tar.zst re3-497c1792455a13f7ea0750274c9ba4b3e26830db.zip |
Diffstat (limited to 'src/vehicles/Boat.cpp')
-rw-r--r-- | src/vehicles/Boat.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vehicles/Boat.cpp b/src/vehicles/Boat.cpp index d727b1bc..8b5de929 100644 --- a/src/vehicles/Boat.cpp +++ b/src/vehicles/Boat.cpp @@ -43,7 +43,7 @@ CBoat *CBoat::apFrameWakeGeneratingBoats[4]; const uint32 CBoat::nSaveStructSize = #ifdef COMPATIBLE_SAVES - 1156; + 1216; #else sizeof(CBoat); #endif @@ -1449,13 +1449,13 @@ void CBoat::Save(uint8*& buf) { CVehicle::Save(buf); - SkipSaveBuf(buf, 1156 - 648); + SkipSaveBuf(buf, 1216 - 672); } void CBoat::Load(uint8*& buf) { CVehicle::Load(buf); - SkipSaveBuf(buf, 1156 - 648); + SkipSaveBuf(buf, 1216 - 672); } #endif |