mirror of
https://github.com/UberGames/rpgxEF.git
synced 2025-04-22 17:00:53 +00:00
replaced some int by int32_t
This commit is contained in:
parent
d5eeeef5b9
commit
9f2c2c6136
1 changed files with 5 additions and 5 deletions
|
@ -222,14 +222,14 @@ void Sys_PumpEvents( void );
|
|||
|
||||
//=============================================================
|
||||
|
||||
typedef unsigned char byte;
|
||||
typedef uint8_t byte;
|
||||
|
||||
typedef enum {qfalse, qtrue} qboolean;
|
||||
|
||||
typedef int qhandle_t;
|
||||
typedef int sfxHandle_t;
|
||||
typedef int fileHandle_t;
|
||||
typedef int clipHandle_t;
|
||||
typedef int32_t qhandle_t;
|
||||
typedef int32_t sfxHandle_t;
|
||||
typedef int32_t fileHandle_t;
|
||||
typedef int32_t clipHandle_t;
|
||||
|
||||
|
||||
#ifndef NULL
|
||||
|
|
Loading…
Reference in a new issue