mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-17 17:11:32 +00:00
sizeof(int)->sizeof(qcint) - pointed out by graphitemaster
This commit is contained in:
parent
a4167900c4
commit
fe06c9dadc
1 changed files with 1 additions and 1 deletions
2
exec.h
2
exec.h
|
@ -43,7 +43,7 @@ typedef union {
|
|||
} qcany;
|
||||
|
||||
typedef char qcfloat_size_is_correct [sizeof(qcfloat) == 4 ?1:-1];
|
||||
typedef char qcint_size_is_correct [sizeof(int) == 4 ?1:-1];
|
||||
typedef char qcint_size_is_correct [sizeof(qcint) == 4 ?1:-1];
|
||||
|
||||
typedef struct {
|
||||
uint32_t offset;
|
||||
|
|
Loading…
Reference in a new issue