mirror of
https://github.com/ioquake/jedi-academy.git
synced 2024-11-22 04:11:57 +00:00
leave the masm assembly to msvc
This commit is contained in:
parent
f820286f06
commit
f99cdcd1fa
2 changed files with 2 additions and 7 deletions
|
@ -802,9 +802,7 @@ int BoxOnPlaneSide2 (vec3_t emins, vec3_t emaxs, struct cplane_s *p)
|
|||
|
||||
==================
|
||||
*/
|
||||
#if !( (defined __linux__ || __FreeBSD__) && (defined __i386__) && (!defined C_ONLY)) // rb010123
|
||||
|
||||
#if defined __LCC__ || defined C_ONLY || !id386
|
||||
#ifndef _MSC_VER
|
||||
|
||||
int BoxOnPlaneSide (vec3_t emins, vec3_t emaxs, struct cplane_s *p)
|
||||
{
|
||||
|
@ -1103,7 +1101,6 @@ Lerror:
|
|||
}
|
||||
#pragma warning( default: 4035 )
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
|
|
@ -1809,8 +1809,7 @@ void Com_Shutdown (void)
|
|||
*/
|
||||
}
|
||||
|
||||
#if !( defined __linux__ || defined __FreeBSD__ ) // r010123 - include FreeBSD
|
||||
#if ((!id386) && (!defined __i386__)) // rcg010212 - for PPC
|
||||
#if !(defined(_MSVC_VER) && defined(id386))
|
||||
|
||||
void Com_Memcpy (void* dest, const void* src, const size_t count)
|
||||
{
|
||||
|
@ -2121,7 +2120,6 @@ skipClamp:
|
|||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // bk001208 - memset/memcpy assembly, Q_acos needed (RC4)
|
||||
//------------------------------------------------------------------------
|
||||
|
||||
|
|
Loading…
Reference in a new issue