- fixed some merging issues.

This commit is contained in:
Christoph Oelckers 2019-01-23 22:01:37 +01:00
parent 5c8ae72453
commit ceb38751f0

View file

@ -415,7 +415,7 @@ DEFINE_ACTION_FUNCTION(DLevelCompatibility, ClearLineIDs)
{ {
PARAM_SELF_PROLOGUE(DLevelCompatibility); PARAM_SELF_PROLOGUE(DLevelCompatibility);
PARAM_INT(line); PARAM_INT(line);
self->Level->tagManager.RemoveLineIDs(line); tagManager.RemoveLineIDs(line);
return 0; return 0;
} }
@ -427,7 +427,7 @@ DEFINE_ACTION_FUNCTION(DLevelCompatibility, AddLineID)
if ((unsigned)line < self->Level->lines.Size()) if ((unsigned)line < self->Level->lines.Size())
{ {
self->Level->tagManager.AddLineID(line, tag); tagManager.AddLineID(line, tag);
} }
return 0; return 0;
} }