mirror of
https://github.com/TASEmulators/desmume
synced 2025-10-06 00:32:43 +02:00
-Changed variable types so they're more portable
This commit is contained in:
@@ -21,17 +21,15 @@
|
||||
#define TYPES_HPP
|
||||
|
||||
#ifndef FASTCALL
|
||||
#ifdef __i386__
|
||||
#ifdef __MINGW32__
|
||||
#define FASTCALL __attribute__((fastcall))
|
||||
#elif defined (__i386__)
|
||||
#define FASTCALL __attribute__((regparm(3)))
|
||||
#else
|
||||
#define FASTCALL
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef __fastcall
|
||||
#define __fastcall FASTCALL
|
||||
#endif
|
||||
|
||||
#ifndef INLINE
|
||||
#ifdef _MSC_VER
|
||||
#define INLINE _inline
|
||||
|
Reference in New Issue
Block a user