mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-02-17 01:21:12 +00:00
Fixed a bug in src/common/header/common.h with respect to ia64
I had written #elif define __ia64__ instead of #elif defined __ia64__ This has been fixed.
This commit is contained in:
parent
a578fff56a
commit
7116d7e90a
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@
|
|||
#define CPUSTRING "amd64"
|
||||
#elif defined __sparc__
|
||||
#define CPUSTRING "sparc64"
|
||||
#elif define __ia64__
|
||||
#elif defined __ia64__
|
||||
#define CPUSTRING "ia64"
|
||||
#else
|
||||
#define CPUSTRING "Unknown"
|
||||
|
|
Loading…
Reference in a new issue