Game compiles again under 32-bit!

This commit is contained in:
Sylae Corell
2014-06-18 13:24:51 -06:00
parent fb45c7677b
commit 039ef4d143
2 changed files with 30 additions and 2 deletions

View File

@@ -18,6 +18,24 @@
#include "globvar.h"
// Check windows
#if _WIN32 || _WIN64
#if _WIN64
#define ENVIRONMENT64
#else
#define ENVIRONMENT32
#endif
#endif
// Check GCC
#if __GNUC__
#if __x86_64__ || __ppc64__
#define ENVIRONMENT64
#else
#define ENVIRONMENT32
#endif
#endif
void startup_load()
{
load_file();