mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-26 22:11:43 +00:00
- forgot to delete the static tag manager.
This commit is contained in:
parent
520d73edf6
commit
e70d708163
2 changed files with 5 additions and 4 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue