Small tweek that just makes it look better.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1555 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
30f51f6553
commit
d9370fb715
1 changed files with 22 additions and 16 deletions
|
@ -246,24 +246,30 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
|
||||
#define ENGINEWEBSITE "http://fteqw.sourceforge.net/"
|
||||
|
||||
#if defined(_WIN32)
|
||||
#if defined(__amd64__)
|
||||
#define PLATFORM "Win32"
|
||||
#ifndef PLATFORM
|
||||
#if defined(_WIN32)
|
||||
#if defined(__amd64__)
|
||||
#define PLATFORM "Win32"
|
||||
#else
|
||||
#define PLATFORM "Win64"
|
||||
#endif
|
||||
#elif defined(__linux__)
|
||||
#if defined(__amd64__)
|
||||
#define PLATFORM "Linux64"
|
||||
#else
|
||||
#define PLATFORM "Linux"
|
||||
#endif
|
||||
#elif defined(__FreeBSD__)
|
||||
#define PLATFORM "FreeBSD"
|
||||
#elif defined(__OpenBSD__)
|
||||
#define PLATFORM "OpenBSD"
|
||||
#elif defined(__NetBSD__)
|
||||
#define PLATFORM "NetBSD"
|
||||
#elif defined(__MORPHOS__)
|
||||
#define PLATFORM "MorphOS"
|
||||
#else
|
||||
#define PLATFORM "Win64"
|
||||
#define PLATFORM "Unknown"
|
||||
#endif
|
||||
#elif defined(__linux__)
|
||||
#define PLATFORM "Linux"
|
||||
#elif defined(__FreeBSD__)
|
||||
#define PLATFORM "FreeBSD"
|
||||
#elif defined(__OpenBSD__)
|
||||
#define PLATFORM "OpenBSD"
|
||||
#elif defined(__NetBSD__)
|
||||
#define PLATFORM "NetBSD"
|
||||
#elif defined(__MORPHOS__)
|
||||
#define PLATFORM "MorphOS"
|
||||
#else
|
||||
#define PLATFORM "Unknown"
|
||||
#endif
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue