Skip to content

Commit

Permalink
remove _32BIT also
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob1 committed Jul 6, 2014
1 parent 8f2a0d3 commit f0fb88b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
1 change: 0 additions & 1 deletion SConscript
Expand Up @@ -138,7 +138,6 @@ for var in ["CFLAGS","CCFLAGS","CXXFLAGS","LINKFLAGS","CPPDEFINES","CPPPATH"]:

#Used for intro text / executable name, actual bit flags are only set if the --64bit/--32bit command line args are given
def add32bitflags(env):
env.Append(CPPDEFINES='_32BIT')
env["BIT"] = 32
def add64bitflags(env):
if platform == "Windows":
Expand Down
8 changes: 2 additions & 6 deletions src/Config.h
Expand Up @@ -43,18 +43,14 @@
#if defined(WIN)
#if defined(_64BIT)
#define IDENT_PLATFORM "WIN64"
#elif defined(_32BIT)
#define IDENT_PLATFORM "WIN32"
#else
#define IDENT_PLATFORM "WIN"
#define IDENT_PLATFORM "WIN32"
#endif
#elif defined(LIN)
#if defined(_64BIT)
#define IDENT_PLATFORM "LIN64"
#elif defined(_32BIT)
#define IDENT_PLATFORM "LIN32"
#else
#define IDENT_PLATFORM "LIN"
#define IDENT_PLATFORM "LIN32"
#endif
#elif defined(MACOSX)
#define IDENT_PLATFORM "MACOSX"
Expand Down

0 comments on commit f0fb88b

Please sign in to comment.