mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-23 05:19:43 +00:00
INLINE is weird on linux...
This commit is contained in:
parent
4c92027415
commit
c45c026124
@ -6,7 +6,7 @@
|
||||
// @NotOk
|
||||
// Globals
|
||||
static int gFrontGauge;
|
||||
void __inline Front_GaugeOff(void)
|
||||
INLINE void Front_GaugeOff(void)
|
||||
{
|
||||
gFrontGauge = 0;
|
||||
}
|
||||
|
@ -36,7 +36,11 @@ typedef char i8;
|
||||
typedef __int16 i16;
|
||||
typedef int i32;
|
||||
|
||||
#ifdef _WIN32
|
||||
#define INLINE __inline
|
||||
#else
|
||||
#define INLINE
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user