opt out of more masm assembly

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

View File

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

View File

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

View File

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