mirror of
https://github.com/UberGames/rpgxEF.git
synced 2025-02-19 02:21:58 +00:00
Fix for linux compile ...
This commit is contained in:
parent
b05c3295f2
commit
a4db04e5b1
1 changed files with 6 additions and 0 deletions
|
@ -27,8 +27,13 @@
|
|||
|
||||
/* This is the minimal configuration that can be used to build SDL */
|
||||
|
||||
#ifdef __linux__
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
#include <stdarg.h>
|
||||
|
||||
#ifndef __linux__
|
||||
typedef signed char int8_t;
|
||||
typedef unsigned char uint8_t;
|
||||
typedef signed short int16_t;
|
||||
|
@ -37,6 +42,7 @@ typedef signed int int32_t;
|
|||
typedef unsigned int uint32_t;
|
||||
typedef unsigned int size_t;
|
||||
typedef unsigned long uintptr_t;
|
||||
#endif
|
||||
|
||||
/* Enable the dummy audio driver (src/audio/dummy/\*.c) */
|
||||
#define SDL_AUDIO_DRIVER_DUMMY 1
|
||||
|
|
Loading…
Reference in a new issue