mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-12 10:40:54 +00:00
Fixed typos and made all assert functions optional
This commit is contained in:
parent
af6e132b37
commit
c798e1bacd
73 changed files with 110 additions and 184 deletions
|
@ -75,7 +75,7 @@ public:
|
|||
CVehicle* RestoreCar();
|
||||
};
|
||||
|
||||
static_assert(sizeof(CStoredCar) == 0x28, "CStoredCar");
|
||||
VALIDATE_SIZE(CStoredCar, 0x28);
|
||||
|
||||
#define SWITCH_GARAGE_DISTANCE_CLOSE 40.0f
|
||||
|
||||
|
@ -172,9 +172,7 @@ class CGarage
|
|||
friend class CCamera;
|
||||
};
|
||||
|
||||
#ifdef CHECK_STRUCT_SIZES
|
||||
static_assert(sizeof(CGarage) == 140, "CGarage");
|
||||
#endif
|
||||
VALIDATE_SIZE(CGarage, 140);
|
||||
|
||||
class CGarages
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue