* moved the 64bit checking code _after_ the int audio stuff, so msvc compiles happily

again.
This commit is contained in:
Nathan Letwory 2007-01-19 05:23:58 +00:00
parent 00e956477e
commit 6b0e6ccd85

@ -229,6 +229,12 @@ int main(int argc, char **argv)
SYS_SystemHandle syshandle;
Scene *sce;
#if defined(WIN32) || defined (__linux__)
int audio = 1;
#else
int audio = 0;
#endif
/* temporary: prevent people to make/use 64 bits versions without them knowing it might be
risky. I don't know for sure yet if we get problems, but I rather not get the burden of
having to fix all faulty saved 64 bits files (ton) */
@ -237,11 +243,6 @@ int main(int argc, char **argv)
exit(0);
}
#if defined(WIN32) || defined (__linux__)
int audio = 1;
#else
int audio = 0;
#endif
setCallbacks();
#ifdef __APPLE__
/* patch to ignore argument finder gives us (pid?) */