Make 'FL_EDICT_INVALID' unsigned

Should be unsigned as the type we test this on (edict_t) is of type unsigned short.
This commit is contained in:
Kawe Mazidjatari 2023-04-08 19:02:14 +02:00
parent 504a20945e
commit 2c28391ca4

View File

@ -8,7 +8,7 @@
#endif // !CLIENT_DLL #endif // !CLIENT_DLL
typedef uint16_t edict_t; typedef uint16_t edict_t;
#define FL_EDICT_INVALID -1 #define FL_EDICT_INVALID 0xFFFF/*-1*/
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// Purpose: Defines the ways that a map can be loaded. // Purpose: Defines the ways that a map can be loaded.