mirror of https://github.com/PCSX2/pcsx2.git
Fix compiling on Linux.
git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@347 a6443dda-0b58-4228-96e9-037be469359c
This commit is contained in:
parent
20a69d222e
commit
32ccde667d
|
@ -89,6 +89,7 @@ typedef union _LARGE_INTEGER
|
|||
long long QuadPart;
|
||||
} LARGE_INTEGER;
|
||||
#define _inline __inline__ __attribute__((unused))
|
||||
#define __fastcall __attribute__((fastcall))
|
||||
#endif
|
||||
|
||||
#if defined(__MINGW32__)
|
||||
|
|
|
@ -55,9 +55,9 @@ int psxRcntFreeze(gzFile f, int Mode);
|
|||
|
||||
void psxVBlankStart();
|
||||
void psxVBlankEnd();
|
||||
void psxCheckStartGate16(int counter);
|
||||
void psxCheckEndGate16(int counter);
|
||||
void psxCheckStartGate32(int counter);
|
||||
void psxCheckEndGate32(int counter);
|
||||
void psxCheckStartGate16(int i);
|
||||
void psxCheckEndGate16(int i);
|
||||
static void psxCheckStartGate32(int i);
|
||||
static void psxCheckEndGate32(int i);
|
||||
|
||||
#endif /* __PSXCOUNTERS_H__ */
|
||||
|
|
Loading…
Reference in New Issue