mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 02:49:03 +00:00
Allow keyboard controls for flying cheats
This commit is contained in:
parent
c7e2845602
commit
d921871a88
1 changed files with 9 additions and 1 deletions
|
@ -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