opt out of more masm assembly

This commit is contained in:
Jonathan Gray 2013-04-22 23:27:09 +10:00
parent 3c1c6ef06d
commit ca5b529ca9
3 changed files with 3 additions and 5 deletions

View File

@ -15,8 +15,7 @@ short *snd_out;
#if !(defined __linux__ && defined __i386__) #if !(defined(_MSC_VER) && defined(__i386__))
#if !id386
void S_WriteLinearBlastStereo16 (void) void S_WriteLinearBlastStereo16 (void)
@ -132,7 +131,6 @@ LExit:
} }
#endif #endif
#endif
void S_TransferStereo16 (unsigned long *pbuf, int endtime) void S_TransferStereo16 (unsigned long *pbuf, int endtime)

View File

@ -16,7 +16,7 @@ typedef unsigned int glIndex_t;
#define NUM_SKIN_EXTENSIONS 9 #define NUM_SKIN_EXTENSIONS 9
// fast float to int conversion // fast float to int conversion
#if id386 && !(defined __linux__ && defined __i386__) #if (defined(_MSC_VER) && defined(__i386__))
long myftol( float f ); long myftol( float f );
#else #else
#define myftol(x) ((int)(x)) #define myftol(x) ((int)(x))

View File

@ -1024,7 +1024,7 @@ void RB_CalcRotateTexCoords( float degsPerSecond, float *st )
#if id386 && !(defined __linux__ && defined __i386__) #if (defined(_MSVC_VER) && (defined __i386__))
#pragma warning(disable: 4035) #pragma warning(disable: 4035)
long myftol( float f ) { long myftol( float f ) {
static int tmp; static int tmp;