Skip to content

Commit f535ff1

Browse files
committed
Replace byte with uint8_t in CTransmission
1 parent 49ec768 commit f535ff1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Client/game_sa/CVehicleSA.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -204,15 +204,15 @@ struct CTransmissionGear
204204
struct CTransmission
205205
{
206206
CTransmissionGear gears[6];
207-
byte driveType;
208-
byte engineType;
209-
byte numOfGears;
210-
byte pad;
207+
uint8_t driveType;
208+
uint8_t engineType;
209+
uint8_t numOfGears;
210+
uint8_t pad;
211211
DWORD handlingFlags;
212212
float engineAcceleration;
213213
float engineInertia;
214214
float maxGearVelocity;
215-
byte pad2[4];
215+
uint8_t pad2[4];
216216
float minGearVelocity;
217217
float curSpeed;
218218
};

0 commit comments

Comments
 (0)