mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- Reverted the 'None' name change from r569.
SVN r585 (trunk)
This commit is contained in:
parent
cc9dc13f55
commit
f76ef6ffc2
4 changed files with 4 additions and 5 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
December 8, 2007
|
||||||
|
- Reverted the 'None' name change from r569.
|
||||||
|
|
||||||
December 6, 2007
|
December 6, 2007
|
||||||
- Fixed the PowerTimeFreezer, too. It got easier once I realized that I only
|
- Fixed the PowerTimeFreezer, too. It got easier once I realized that I only
|
||||||
need to be concerned about changing the flag on odd tics, since A_Tracer()
|
need to be concerned about changing the flag on odd tics, since A_Tracer()
|
||||||
|
|
|
@ -71,10 +71,8 @@ FName::NameManager FName::NameData;
|
||||||
static const char *PredefinedNames[] =
|
static const char *PredefinedNames[] =
|
||||||
{
|
{
|
||||||
#define xx(n) #n,
|
#define xx(n) #n,
|
||||||
#define yy(n,s) s,
|
|
||||||
#include "namedef.h"
|
#include "namedef.h"
|
||||||
#undef xx
|
#undef xx
|
||||||
#undef yy
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// CODE --------------------------------------------------------------------
|
// CODE --------------------------------------------------------------------
|
||||||
|
|
|
@ -37,10 +37,8 @@
|
||||||
enum ENamedName
|
enum ENamedName
|
||||||
{
|
{
|
||||||
#define xx(n) NAME_##n,
|
#define xx(n) NAME_##n,
|
||||||
#define yy(n,s) NAME_##n,
|
|
||||||
#include "namedef.h"
|
#include "namedef.h"
|
||||||
#undef xx
|
#undef xx
|
||||||
#undef yy
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class FString;
|
class FString;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// 'None' must always be the first name.
|
// 'None' must always be the first name.
|
||||||
yy(None, "")
|
xx(None)
|
||||||
|
|
||||||
xx(Super)
|
xx(Super)
|
||||||
xx(Object)
|
xx(Object)
|
||||||
|
|
Loading…
Reference in a new issue