mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
- fixed some merging issues.
This commit is contained in:
parent
5c8ae72453
commit
ceb38751f0
1 changed files with 2 additions and 2 deletions
|
@ -415,7 +415,7 @@ DEFINE_ACTION_FUNCTION(DLevelCompatibility, ClearLineIDs)
|
|||
{
|
||||
PARAM_SELF_PROLOGUE(DLevelCompatibility);
|
||||
PARAM_INT(line);
|
||||
self->Level->tagManager.RemoveLineIDs(line);
|
||||
tagManager.RemoveLineIDs(line);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -427,7 +427,7 @@ DEFINE_ACTION_FUNCTION(DLevelCompatibility, AddLineID)
|
|||
|
||||
if ((unsigned)line < self->Level->lines.Size())
|
||||
{
|
||||
self->Level->tagManager.AddLineID(line, tag);
|
||||
tagManager.AddLineID(line, tag);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue