Skip to content

Commit 7d620b2

Browse files
committed
typo
1 parent 07e4716 commit 7d620b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Client/mods/deathmatch/logic/CClientPed.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7282,12 +7282,12 @@ void CClientPed::RunSwimTask() const
72827282

72837283
bool CClientPed::IsEnteringToVehicle()
72847284
{
7285-
bool inOutState = GetVehicleInOutState();
7285+
int inOutState = GetVehicleInOutState();
72867286
return inOutState == VEHICLE_INOUT_GETTING_IN || inOutState == VEHICLE_INOUT_JACKING;
72877287
}
72887288

72897289
bool CClientPed::IsExitingFromVehicle()
72907290
{
7291-
bool inOutState = GetVehicleInOutState();
7291+
int inOutState = GetVehicleInOutState();
72927292
return inOutState == VEHICLE_INOUT_GETTING_OUT || inOutState == VEHICLE_INOUT_GETTING_JACKED;
72937293
}

0 commit comments

Comments
 (0)