- forgot to delete the static tag manager.

This commit is contained in:
Christoph Oelckers 2019-01-09 01:02:03 +01:00
parent 520d73edf6
commit e70d708163
2 changed files with 5 additions and 4 deletions

View file

@ -39,8 +39,6 @@
#include "g_levellocals.h"
#include "vm.h"
FTagManager tagManager;
//-----------------------------------------------------------------------------
//
//
@ -296,7 +294,11 @@ void FTagManager::DumpTags()
CCMD(dumptags)
{
tagManager.DumpTags();
ForAllLevels([](FLevelLocals *Level)
{
Printf("%s - %s\n", Level->MapName.GetChars(), Level->LevelName.GetChars());
Level->tagManager.DumpTags();
}
}
//-----------------------------------------------------------------------------

View file

@ -60,7 +60,6 @@
#include "cmdlib.h"
#include "g_levellocals.h"
char nulspace[1024 * 1024 * 4];
bool save_full = false; // for testing. Should be removed afterward.
int utf8_encode(int32_t codepoint, char *buffer, int *size)