mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
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:
parent
95324450fa
commit
fc9609928f
2 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue