blob: 8b3b29ee44016463065708a53cbcacd322de03df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef PLATFORM_SDL_H_
#define PLATFORM_SDL_H_
// host cpu specification (parsec constants) ----------------------------------
//
#define SYSTEM_CPU_INTEL
//#define SYSTEM_CPU_POWERPC
#ifdef SYSTEM_TARGET_WINDOWS
#define SIGIOT SIGABRT
#endif
#ifdef SYSTEM_SDL
//#define DISABLE_JOYSTICK_CODE // No Joystick support in Cygwin port yet.
#endif
#endif // !PLATFORM_SDL_H_
|