summaryrefslogtreecommitdiffstats
path: root/src/vehicles
diff options
context:
space:
mode:
authormajestic <majesticcoding@gmail.com>2021-01-10 19:47:25 +0100
committermajestic <majesticcoding@gmail.com>2021-01-10 19:47:25 +0100
commit0508a62c91dadca9021a9387370bcf8b12709ccd (patch)
tree28f7839aa1b94bcddc8f7c5eeb76f01b50cdadd0 /src/vehicles
parentMerge branch 'lcs' of https://github.com/GTAmodding/re3 into lcs (diff)
parentmobile building rendering (diff)
downloadre3-0508a62c91dadca9021a9387370bcf8b12709ccd.tar
re3-0508a62c91dadca9021a9387370bcf8b12709ccd.tar.gz
re3-0508a62c91dadca9021a9387370bcf8b12709ccd.tar.bz2
re3-0508a62c91dadca9021a9387370bcf8b12709ccd.tar.lz
re3-0508a62c91dadca9021a9387370bcf8b12709ccd.tar.xz
re3-0508a62c91dadca9021a9387370bcf8b12709ccd.tar.zst
re3-0508a62c91dadca9021a9387370bcf8b12709ccd.zip
Diffstat (limited to 'src/vehicles')
-rw-r--r--src/vehicles/Cranes.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vehicles/Cranes.cpp b/src/vehicles/Cranes.cpp
index ffcb80d0..ce254100 100644
--- a/src/vehicles/Cranes.cpp
+++ b/src/vehicles/Cranes.cpp
@@ -466,7 +466,7 @@ bool CCranes::DoesMilitaryCraneHaveThisOneAlready(uint32 mi)
case MI_FIRETRUCK: return (CarsCollectedMilitaryCrane & 1);
case MI_AMBULAN: return (CarsCollectedMilitaryCrane & 2);
case MI_ENFORCER: return (CarsCollectedMilitaryCrane & 4);
- case MI_FBIRANCH: return (CarsCollectedMilitaryCrane & 8);
+ case (uint32)MI_FBIRANCH: return (CarsCollectedMilitaryCrane & 8);
case MI_RHINO: return (CarsCollectedMilitaryCrane & 0x10);
case MI_BARRACKS: return (CarsCollectedMilitaryCrane & 0x20);
case MI_POLICE: return (CarsCollectedMilitaryCrane & 0x40);
@@ -481,7 +481,7 @@ void CCranes::RegisterCarForMilitaryCrane(uint32 mi)
case MI_FIRETRUCK: CarsCollectedMilitaryCrane |= 1; break;
case MI_AMBULAN: CarsCollectedMilitaryCrane |= 2; break;
case MI_ENFORCER: CarsCollectedMilitaryCrane |= 4; break;
- case MI_FBIRANCH: CarsCollectedMilitaryCrane |= 8; break;
+ case (uint32)MI_FBIRANCH: CarsCollectedMilitaryCrane |= 8; break;
case MI_RHINO: CarsCollectedMilitaryCrane |= 0x10; break;
case MI_BARRACKS: CarsCollectedMilitaryCrane |= 0x20; break;
case MI_POLICE: CarsCollectedMilitaryCrane |= 0x40; break;