diff options
Diffstat (limited to '')
-rw-r--r-- | src/modelinfo/VehicleModelInfo.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/modelinfo/VehicleModelInfo.h b/src/modelinfo/VehicleModelInfo.h index b5399d44..1a6d6a55 100644 --- a/src/modelinfo/VehicleModelInfo.h +++ b/src/modelinfo/VehicleModelInfo.h @@ -57,7 +57,10 @@ public: uint8 m_lastColour2; char m_gameName[32]; int32 m_vehicleType; - int32 m_wheelId; + union { + int32 m_wheelId; + int32 m_planeLodId; + }; float m_wheelScale; int32 m_numDoors; int32 m_handlingId; |