Fix SDL compile with NOASM=1 (nw)

This commit is contained in:
Justin Kerk 2013-10-27 23:29:06 +00:00
parent 4a01707cf3
commit b99fba7019

View File

@ -13,8 +13,9 @@
#ifndef __EMINLINE__
#define __EMINLINE__
#if !defined(SDLMAME_NOASM)
/* we come with implementations for GCC x86 and PPC */
#if defined(__GNUC__) && !defined(SDLMAME_NOASM)
#if defined(__GNUC__)
#if defined(__i386__) || defined(__x86_64__)
#include "eigccx86.h"
@ -29,6 +30,7 @@
#include "osinline.h"
#endif
#endif
/***************************************************************************