fix last commit, debugmenu options

This commit is contained in:
Fire-Head
2021-01-08 23:55:13 +03:00
parent 39a121351d
commit 02f6ed7da3
3 changed files with 26 additions and 14 deletions

View File

@ -21,13 +21,13 @@ uint8 CDraw::FadeGreen;
uint8 CDraw::FadeBlue;
#ifdef PROPER_SCALING
int32 CDraw::ms_bProperScaling = true;
bool CDraw::ms_bProperScaling = true;
#endif
#ifdef FIX_RADAR
bool CDraw::ms_bFixRadar = true;
#endif
#ifdef FIX_SPRITES
int32 CDraw::ms_bFixRadar = true;
#endif
#ifdef FIX_RADAR
int32 CDraw::ms_bFixSprites = true;
bool CDraw::ms_bFixSprites = true;
#endif
float

View File

@ -36,13 +36,13 @@ public:
static uint8 FadeBlue;
#ifdef PROPER_SCALING
static int32 ms_bProperScaling;
#endif
#ifdef FIX_SPRITES
static int32 ms_bFixRadar;
static bool ms_bProperScaling;
#endif
#ifdef FIX_RADAR
static int32 ms_bFixSprites;
static bool ms_bFixRadar;
#endif
#ifdef FIX_SPRITES
static bool ms_bFixSprites;
#endif
static void SetNearClipZ(float nearclip) { ms_fNearClipZ = nearclip; }