mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-12-22 23:10:00 +00:00
Allow keyboard controls for flying cheats
This commit is contained in:
parent
c7e2845602
commit
d921871a88
|
@ -685,7 +685,15 @@ void CControllerConfigManager::AffectControllerStateOn_ButtonDown_Driving(int32
|
|||
}
|
||||
|
||||
bool isDodo = false;
|
||||
if (FindPlayerVehicle() && (FindPlayerVehicle()->IsVehicle() && FindPlayerVehicle()->GetModelIndex() == MI_DODO))
|
||||
if (FindPlayerVehicle() && (FindPlayerVehicle()->IsVehicle() && (
|
||||
FindPlayerVehicle()->GetModelIndex() == MI_DODO
|
||||
#ifdef FIX_BUGS
|
||||
|| CVehicle::bAllDodosCheat
|
||||
#ifdef ALLCARSHELI_CHEAT
|
||||
|| bAllCarCheat
|
||||
#endif
|
||||
#endif
|
||||
)))
|
||||
{
|
||||
isDodo = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue