Make 'dommxoverlay' and 'beforedrawrooms' static in engine.c.

git-svn-id: https://svn.eduke32.com/eduke32@2391 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2012-02-27 19:40:28 +00:00
parent 95324450fa
commit fc9609928f
2 changed files with 3 additions and 2 deletions

View file

@ -402,7 +402,7 @@ typedef struct {
extern palette_t curpalette[256], curpalettefaded[256], palfadergb;
extern char palfadedelta;
extern int32_t dommxoverlay, novoxmips;
extern int32_t novoxmips;
extern float debug1, debug2;

View file

@ -104,7 +104,8 @@ static int32_t lowrecip[1024], nytooclose, nytoofar;
static uint32_t distrecip[65536+256];
static intptr_t *lookups = NULL;
int32_t dommxoverlay = 1, beforedrawrooms = 1, indrawroomsandmasks = 0;
static int32_t dommxoverlay = 1, beforedrawrooms = 1;
int32_t indrawroomsandmasks = 0;
static int32_t oxdimen = -1, oviewingrange = -1, oxyaspect = -1;