REDRIVER2/src_rebuild/Game/psyx_compat.h

23 lines
347 B
C
Raw Normal View History

#ifndef PSYX_COMPAT_H
#define PSYX_COMPAT_H
// Psy-Cross compatibility header
// Necessary includes
#ifndef PSX
#include "PSYX_PUBLIC.H"
#endif
// Necessary types
// It's size should match P_LEN*4
#ifdef PSX
typedef int intptr_t;
typedef u_long OTTYPE;
#define RECT16 RECT
#else
typedef unsigned long long OTTYPE;
#endif
#endif PSYX_COMPAT_H