mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-16 09:02:06 +00:00
add INT32 check for dos builds
This commit is contained in:
parent
d236f1414a
commit
6a723b2e75
1 changed files with 2 additions and 0 deletions
|
@ -15,8 +15,10 @@
|
||||||
#define INT32 __int32
|
#define INT32 __int32
|
||||||
#else
|
#else
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
#ifndef INT32
|
||||||
#define INT32 int32_t
|
#define INT32 int32_t
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue