mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-02 22:11:22 +00:00
removed all remaining references to id386 and UNALIGNED_OK because
the fitz engine doesn't use them at all. git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@364 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
c7c9f1abb3
commit
301ff71325
2 changed files with 0 additions and 25 deletions
|
@ -498,10 +498,6 @@ int GreatestCommonDivisor (int i1, int i2)
|
|||
}
|
||||
|
||||
|
||||
#if !id386
|
||||
|
||||
// TODO: move to nonintel.c
|
||||
|
||||
/*
|
||||
===================
|
||||
Invert24To16
|
||||
|
@ -519,4 +515,3 @@ fixed16_t Invert24To16(fixed16_t val)
|
|||
(((double)0x10000 * (double)0x1000000 / (double)val) + 0.5);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
|
@ -48,26 +48,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
#include "q_stdinc.h"
|
||||
|
||||
#if defined(_WIN32) && !defined(WINDED)
|
||||
|
||||
#if defined(_M_IX86) && !defined(__i386__)
|
||||
#define __i386__ 1
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
#if defined __i386__ // && !defined __sun__
|
||||
#define id386 1
|
||||
#else
|
||||
#define id386 0
|
||||
#endif
|
||||
|
||||
#if id386
|
||||
#define UNALIGNED_OK 1 // set to 0 if unaligned accesses are not supported
|
||||
#else
|
||||
#define UNALIGNED_OK 0
|
||||
#endif
|
||||
|
||||
// !!! if this is changed, it must be changed in d_ifacea.h too !!!
|
||||
#define CACHE_SIZE 32 // used to align key data structures
|
||||
|
||||
|
|
Loading…
Reference in a new issue