mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
- save all bound keys, not only the one with commands that have both slots assigned.
This commit is contained in:
parent
db1a9a9363
commit
70a7d1bd82
2 changed files with 27 additions and 27 deletions
|
@ -443,7 +443,8 @@ void FGameConfigFile::ArchiveGameData (const char *gamename)
|
|||
if (symb == NULL || symb->name == nullptr ||symb->help == nullptr)
|
||||
break;
|
||||
|
||||
SetValueForKey(symb->name, symb->help);
|
||||
if (symb->func == (void*)OSD_ALIAS)
|
||||
SetValueForKey(symb->name, symb->help);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -305,33 +305,32 @@ void CONFIG_SetDefaultKeys(const char *defbinds, bool lazy/*=false*/)
|
|||
{
|
||||
sc.MustGetToken(TK_StringConst);
|
||||
default1 = KB_StringToScanCode(sc.String);
|
||||
if (num >= 0 && num < NUMGAMEFUNCTIONS)
|
||||
{
|
||||
auto& key = KeyboardKeys[num];
|
||||
#if 0
|
||||
// skip the function if the default key is already used
|
||||
// or the function is assigned to another key
|
||||
if (lazy && (key[0] != 0xff || (CONTROL_KeyIsBound(default0) && Bstrlen(CONTROL_KeyBinds[default0].cmdstr) > strlen_gamefunc_
|
||||
&& CONFIG_FunctionNameToNum(CONTROL_KeyBinds[default0].cmdstr + strlen_gamefunc_) >= 0)))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
#endif
|
||||
key[0] = default0;
|
||||
key[1] = default1;
|
||||
|
||||
if (key[0]) CONTROL_FreeKeyBind(key[0]);
|
||||
if (key[1]) CONTROL_FreeKeyBind(key[1]);
|
||||
|
||||
if (num == gamefunc_Show_Console)
|
||||
OSD_CaptureKey(key[0]);
|
||||
else
|
||||
CONFIG_MapKey(num, key[0], 0, key[1], 0);
|
||||
|
||||
CONTROL_DefineFlag(num, false);
|
||||
|
||||
}
|
||||
}
|
||||
if (num >= 0 && num < NUMGAMEFUNCTIONS)
|
||||
{
|
||||
auto& key = KeyboardKeys[num];
|
||||
#if 0
|
||||
// skip the function if the default key is already used
|
||||
// or the function is assigned to another key
|
||||
if (lazy && (key[0] != 0xff || (CONTROL_KeyIsBound(default0) && Bstrlen(CONTROL_KeyBinds[default0].cmdstr) > strlen_gamefunc_
|
||||
&& CONFIG_FunctionNameToNum(CONTROL_KeyBinds[default0].cmdstr + strlen_gamefunc_) >= 0)))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
#endif
|
||||
key[0] = default0;
|
||||
key[1] = default1;
|
||||
|
||||
if (key[0]) CONTROL_FreeKeyBind(key[0]);
|
||||
if (key[1]) CONTROL_FreeKeyBind(key[1]);
|
||||
|
||||
if (num == gamefunc_Show_Console)
|
||||
OSD_CaptureKey(key[0]);
|
||||
else
|
||||
CONFIG_MapKey(num, key[0], 0, key[1], 0);
|
||||
|
||||
}
|
||||
CONTROL_DefineFlag(num, false);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue