mirror of
https://github.com/ioquake/jedi-academy.git
synced 2024-11-10 07:11:44 +00:00
opt out of more masm assembly
This commit is contained in:
parent
3aaacddbb2
commit
6fc2559179
3 changed files with 3 additions and 5 deletions
|
@ -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)
|
||||||
|
|
|
@ -23,7 +23,7 @@ typedef unsigned int glIndex_t;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// 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))
|
||||||
|
|
|
@ -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)
|
#pragma warning(disable: 4035)
|
||||||
long myftol( float f ) {
|
long myftol( float f ) {
|
||||||
static int tmp;
|
static int tmp;
|
||||||
|
|
Loading…
Reference in a new issue