Remove unused SYSTEM_POOL_SIZE definition (was used with nedmalloc), change in3dmode() into macro similar to bkbhit()

git-svn-id: https://svn.eduke32.com/eduke32@4039 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2013-08-24 22:55:49 +00:00
parent 322888ce83
commit 7e63cac6a0

View file

@ -12,8 +12,6 @@
extern "C" {
#endif
#define SYSTEM_POOL_SIZE (64 * 1048576)
extern char quitevent, appactive;
extern int32_t vsync;
@ -100,10 +98,7 @@ extern int32_t joyaxespresent;
extern int32_t qsetmode;
static inline int32_t in3dmode(void)
{
return (qsetmode==200);
}
#define in3dmode() (qsetmode==200)
int32_t initsystem(void);
void uninitsystem(void);