mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-12-22 23:10:00 +00:00
Register start button for real
This commit is contained in:
parent
e29e911302
commit
2034d7b2ae
|
@ -633,6 +633,11 @@ void CControllerConfigManager::AffectControllerStateOn_ButtonDown(int32 button,
|
||||||
}
|
}
|
||||||
|
|
||||||
AffectControllerStateOn_ButtonDown_AllStates(button, type, *state);
|
AffectControllerStateOn_ButtonDown_AllStates(button, type, *state);
|
||||||
|
|
||||||
|
#ifdef REGISTER_START_BUTTON
|
||||||
|
if (button == 12)
|
||||||
|
state->Start = 255;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1036,6 +1041,11 @@ void CControllerConfigManager::AffectControllerStateOn_ButtonUp(int32 button, eC
|
||||||
{
|
{
|
||||||
if (FrontEndMenuManager.GetIsMenuActive())
|
if (FrontEndMenuManager.GetIsMenuActive())
|
||||||
AffectControllerStateOn_ButtonUp_All_Player_States(button, type, *state);
|
AffectControllerStateOn_ButtonUp_All_Player_States(button, type, *state);
|
||||||
|
|
||||||
|
#ifdef REGISTER_START_BUTTON
|
||||||
|
if (button == 12)
|
||||||
|
state->Start = 0;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue