mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-18 22:31:36 +00:00
Revert that trans stuff
This commit is contained in:
parent
48d6375817
commit
3f546df677
2 changed files with 2 additions and 1 deletions
1
Makefile
1
Makefile
|
@ -160,6 +160,7 @@ SPLINTFLAGS = \
|
|||
-realcompare \
|
||||
-observertrans \
|
||||
-shiftnegative \
|
||||
-freshtrans \
|
||||
-abstract \
|
||||
-statictrans \
|
||||
-castfcnptr
|
||||
|
|
2
code.c
2
code.c
|
@ -36,7 +36,7 @@ uint32_t code_entfields;
|
|||
/* This is outrageous! */
|
||||
#define QCINT_ENTRY void*
|
||||
#define QCINT_TO_HASH_ENTRY(q) ((void*)(uintptr_t)(q))
|
||||
#define HASH_ENTRY_TO_QCINT(h) /*@only@*/ ((qcint) *((uintptr_t*)(&(h))) )
|
||||
#define HASH_ENTRY_TO_QCINT(h) ((qcint)(uintptr_t)(h))
|
||||
static ht code_string_cache;
|
||||
static qcint code_string_cached_empty;
|
||||
|
||||
|
|
Loading…
Reference in a new issue