Merge branch 'master' of https://github.com/coelckers/gzdoom into lightmaps2

# Conflicts:
#	src/common/engine/namedef.h
This commit is contained in:
nashmuhandes 2022-01-21 01:39:37 +08:00
commit 8ea47fdcc3
4 changed files with 916 additions and 969 deletions

File diff suppressed because it is too large Load diff

View file

@ -75,6 +75,9 @@ static const char *PredefinedNames[] =
#define xx(n) #n,
#define xy(n, s) s,
#include "namedef.h"
#if __has_include("namedef_custom.h")
#include "namedef_custom.h"
#endif
#undef xx
#undef xy
};

View file

@ -42,6 +42,9 @@ enum ENamedName
#define xx(n) NAME_##n,
#define xy(n, s) NAME_##n,
#include "namedef.h"
#if __has_include("namedef_custom.h")
#include "namedef_custom.h"
#endif
#undef xx
#undef xy
};