change NOSSE2 conditional compilation. hope it still works for gcc guys

This commit is contained in:
zeromus 2009-04-18 21:14:16 +00:00
parent d4afa548de
commit a05659a208
2 changed files with 5 additions and 1 deletions

View File

@ -33,7 +33,7 @@ void MatrixInit (float *matrix)
matrix[0] = matrix[5] = matrix[10] = matrix[15] = 1.f;
}
#if not defined(WIN32) || defined(NOSSE2)
#ifdef NOSSE2
void MATRIXFASTCALL MatrixMultVec4x4 (const float *matrix, float *vecPtr)
{
float x = vecPtr[0];

View File

@ -25,6 +25,10 @@
#include "config.h"
#endif
#ifndef _MSC_VER
#define NOSSE2
#endif
#define DESMUME_NAME "DeSmuME"
#ifdef _WIN64