mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-05 20:44:09 +00:00
Merge remote-tracking branch 'origin/miami' into lcs
This commit is contained in:
commit
037c332158
6 changed files with 27 additions and 47 deletions
|
@ -1881,8 +1881,13 @@ CMenuManager::DrawControllerBound(int32 yStart, int32 xStart, int32 unused, int8
|
|||
}
|
||||
|
||||
// Print bindings, including seperator (-) between them
|
||||
|
||||
CFont::SetScale(MENU_X(0.25f), MENU_Y(LISTITEM_Y_SCALE));
|
||||
#ifdef FIX_BUGS
|
||||
for (; contSetOrder < MAX_SETORDERS && controllerAction >= 0; contSetOrder++) {
|
||||
#else
|
||||
for (; contSetOrder < MAX_SETORDERS && controllerAction != -1; contSetOrder++) {
|
||||
#endif
|
||||
wchar *settingText = ControlsManager.GetControllerSettingTextWithOrderNumber((e_ControllerAction)controllerAction, (eContSetOrder)contSetOrder);
|
||||
if (settingText) {
|
||||
++bindingsForThisOpt;
|
||||
|
@ -5503,6 +5508,9 @@ CMenuManager::SwitchMenuOnAndOff()
|
|||
}
|
||||
Initialise();
|
||||
LoadAllTextures();
|
||||
#ifdef FIX_BUGS
|
||||
CPad::StopPadsShaking();
|
||||
#endif
|
||||
} else {
|
||||
#ifdef EXTENDED_COLOURFILTER
|
||||
// we always expect CPostFX to be open
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue