mirror of
https://github.com/ioquake/jedi-outcast.git
synced 2024-11-10 07:11:42 +00:00
opt out of more masm assembly
This commit is contained in:
parent
3c1c6ef06d
commit
ca5b529ca9
3 changed files with 3 additions and 5 deletions
|
@ -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)
|
||||
|
|
|
@ -16,7 +16,7 @@ typedef unsigned int glIndex_t;
|
|||
#define NUM_SKIN_EXTENSIONS 9
|
||||
|
||||
// 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))
|
||||
|
|
|
@ -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)
|
||||
long myftol( float f ) {
|
||||
static int tmp;
|
||||
|
|
Loading…
Reference in a new issue