From 1e3230486ec975dfcb823ba3b6c35cfa400dcdfd Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 17 May 2015 21:40:25 +0200 Subject: [PATCH] - Fixed: FTagManager::Clear did not clear the line ID hashing index. --- src/p_tags.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/p_tags.h b/src/p_tags.h index 75d397d8d..c3162d9b5 100644 --- a/src/p_tags.h +++ b/src/p_tags.h @@ -49,6 +49,7 @@ public: startForSector.Clear(); startForLine.Clear(); memset(TagHashFirst, -1, sizeof(TagHashFirst)); + memset(IDHashFirst, -1, sizeof(IDHashFirst)); } bool SectorHasTags(const sector_t *sector) const;