Fixed inverted bottom button availability in Network Host menu
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@3310 30fe4595-0a0c-4342-8851-515496e4dcbd Former-commit-id: 2c44a93d4421e44879e4c3a94626e663d9925f35 Former-commit-id: aaf749a3b1186beae4e0d4f25b8d049627d7b404
This commit is contained in:
parent
849e550e02
commit
36cda122e7
1 changed files with 8 additions and 8 deletions
|
@ -104,7 +104,7 @@ static void SetReadyStatus(int index,bool bStatus)
|
|||
static void EnableMenuHostButtons(bool bChecked)
|
||||
{
|
||||
// Disable/enable menu selections
|
||||
const int isEnabled = bChecked ? GFUI_ENABLE : GFUI_DISABLE;
|
||||
const int isEnabled = bChecked ? GFUI_DISABLE : GFUI_ENABLE;
|
||||
GfuiEnable(racemanMenuHdle, g_CarSetupButtonId, isEnabled);
|
||||
GfuiEnable(racemanMenuHdle, g_HostSettingsButtonId, isEnabled);
|
||||
GfuiEnable(racemanMenuHdle, g_CancelButtonId, isEnabled);
|
||||
|
|
Loading…
Reference in a new issue