also enable rgbsse.h for optimized (GCC only) DEBUG builds (nw)

This commit is contained in:
Oliver Stöneberg 2014-06-05 14:56:33 +00:00
parent 5c0a2624c6
commit e9b70d0e93
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@
SSE TABLES
***************************************************************************/
#if !defined(MAME_DEBUG) && (defined(__SSE2__) || defined(_MSC_VER)) && defined(PTR64)
#if (!defined(MAME_DEBUG) || defined(__OPTIMIZE__)) && (defined(__SSE2__) || defined(_MSC_VER)) && defined(PTR64)
const struct _rgbsse_statics rgbsse_statics =
{
{ 0 },

View File

@ -14,7 +14,7 @@
#define __RGBUTIL__
/* use SSE on 64-bit implementations, where it can be assumed */
#if !defined(MAME_DEBUG) && (defined(__SSE2__) || defined(_MSC_VER)) && defined(PTR64)
#if (!defined(MAME_DEBUG) || defined(__OPTIMIZE__)) && (defined(__SSE2__) || defined(_MSC_VER)) && defined(PTR64)
#include "rgbsse.h"
#elif defined(__ALTIVEC__)
#include "rgbvmx.h"