mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 14:51:46 +00:00
- fixed a misplaced ')' in addkeysection.
SVN r2836 (trunk)
This commit is contained in:
parent
ebcf08686a
commit
a2673c2cc4
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ CCMD (addkeysection)
|
|||
|
||||
for (unsigned i = 0; i < KeySections.Size(); i++)
|
||||
{
|
||||
if (KeySections[i].mTitle.CompareNoCase(argv[2] == 0))
|
||||
if (KeySections[i].mTitle.CompareNoCase(argv[2]) == 0)
|
||||
{
|
||||
CurrentKeySection = i;
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue