mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-02-21 11:21:04 +00:00
- removed some leftover code from initial development in the DoomEdNum parser.
This commit is contained in:
parent
cad282142d
commit
3300817d65
1 changed files with 1 additions and 2 deletions
|
@ -213,13 +213,12 @@ void FMapInfoParser::ParseDoomEdNums()
|
||||||
DoomEdFromMapinfo.Insert(ednum, editem);
|
DoomEdFromMapinfo.Insert(ednum, editem);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
sc.MustGetStringName(",");
|
|
||||||
sc.MustGetNumber();
|
sc.MustGetNumber();
|
||||||
}
|
}
|
||||||
int i = 0;
|
int i = 0;
|
||||||
while (i < 5)
|
while (i < 5)
|
||||||
{
|
{
|
||||||
editem.args[i++] = sc.Number;
|
editem.args[i] = sc.Number;
|
||||||
i++;
|
i++;
|
||||||
if (!sc.CheckString(",")) break;
|
if (!sc.CheckString(",")) break;
|
||||||
sc.MustGetNumber();
|
sc.MustGetNumber();
|
||||||
|
|
Loading…
Reference in a new issue