From ceb38751f0599d1789d65ef979b24466d40b0b66 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 23 Jan 2019 22:01:37 +0100 Subject: [PATCH] - fixed some merging issues. --- src/maploader/compatibility.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/maploader/compatibility.cpp b/src/maploader/compatibility.cpp index a3c9792261..e59357731f 100644 --- a/src/maploader/compatibility.cpp +++ b/src/maploader/compatibility.cpp @@ -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; }