mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-02-07 08:21:04 +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++)
|
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;
|
CurrentKeySection = i;
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue