mirror of
https://github.com/holub/mame
synced 2025-10-06 09:00:04 +03:00
Fix SDL compile with NOASM=1 (nw)
This commit is contained in:
parent
4a01707cf3
commit
b99fba7019
@ -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
|
||||
|
||||
|
||||
/***************************************************************************
|
||||
|
Loading…
Reference in New Issue
Block a user