Skip to content

Commit

Permalink
Better fix for linux and bsd defines
Browse files Browse the repository at this point in the history
  • Loading branch information
ensiform committed Apr 26, 2020
1 parent f27789a commit 14e8b3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qcommon/q_platform.h
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#define OS_STRING "linux"
#if defined (__i386__)
#define OSARCH_STRING OS_STRING "32"
defined (__x86_64__) || defined (__amd64__)
#elif defined (__x86_64__) || defined (__amd64__)
#define OSARCH_STRING OS_STRING "64"
#endif
#define ID_INLINE inline
Expand All @@ -143,7 +143,7 @@ defined (__x86_64__) || defined (__amd64__)

#if defined (__i386__)
#define OSARCH_STRING OS_STRING "32"
defined (__x86_64__) || defined (__amd64__)
#elif defined (__x86_64__) || defined (__amd64__)
#define OSARCH_STRING OS_STRING "64"
#endif

Expand Down

0 comments on commit 14e8b3f

Please sign in to comment.