mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 00:41:55 +00:00
- removed some unused variables and declarations.
This commit is contained in:
parent
c5ec2af020
commit
4ec748a92b
2 changed files with 1 additions and 19 deletions
|
@ -101,8 +101,6 @@ struct usermaphack_t
|
|||
|
||||
EXTERN int leveltimer;
|
||||
|
||||
EXTERN int32_t xdim, ydim;
|
||||
|
||||
EXTERN int32_t Numsprites;
|
||||
EXTERN int32_t display_mirror;
|
||||
|
||||
|
@ -119,13 +117,7 @@ enum {
|
|||
inline int32_t g_visibility = 512, g_relvisibility = 0;
|
||||
|
||||
EXTERN vec2_t windowxy1, windowxy2;
|
||||
|
||||
// last sprite in the freelist, that is the spritenum for which
|
||||
// .statnum==MAXSTATUS && nextspritestat[spritenum]==-1
|
||||
// (or -1 if freelist is empty):
|
||||
EXTERN int16_t tailspritefree;
|
||||
|
||||
extern uint32_t drawlinepat;
|
||||
EXTERN int32_t xdim, ydim;
|
||||
|
||||
extern uint8_t globalr, globalg, globalb;
|
||||
|
||||
|
@ -234,9 +226,6 @@ inline void getcorrectzsofslope(int sectnum, int32_t dax, int32_t day, int32_t *
|
|||
getzsofslopeptr(§or[sectnum], closest.X, closest.Y, ceilz, florz);
|
||||
}
|
||||
|
||||
void alignceilslope(sectortype* dasect, int32_t x, int32_t y, int32_t z);
|
||||
void alignflorslope(sectortype* dasect, int32_t x, int32_t y, int32_t z);
|
||||
|
||||
int32_t lintersect(int32_t originX, int32_t originY, int32_t originZ,
|
||||
int32_t destX, int32_t destY, int32_t destZ,
|
||||
int32_t lineStartX, int32_t lineStartY, int32_t lineEndX, int32_t lineEndY,
|
||||
|
@ -244,19 +233,13 @@ int32_t lintersect(int32_t originX, int32_t originY, int32_t originZ,
|
|||
|
||||
int32_t spriteheightofsptr(DCoreActor* spr, int32_t *height, int32_t alsotileyofs);
|
||||
|
||||
int videoCaptureScreen();
|
||||
|
||||
void Polymost_Startup();
|
||||
|
||||
EXTERN_CVAR(Bool, hw_animsmoothing)
|
||||
EXTERN_CVAR(Bool, hw_hightile)
|
||||
EXTERN_CVAR(Bool, hw_models)
|
||||
EXTERN_CVAR(Float, hw_shadescale)
|
||||
EXTERN_CVAR(Float, gl_texture_filter_anisotropic)
|
||||
EXTERN_CVAR(Int, gl_texture_filter)
|
||||
extern bool hw_int_useindexedcolortextures;
|
||||
EXTERN_CVAR(Bool, hw_useindexedcolortextures)
|
||||
EXTERN_CVAR(Bool, hw_parallaxskypanning)
|
||||
EXTERN_CVAR(Bool, r_voxels)
|
||||
|
||||
extern int32_t mdtims, omdtims;
|
||||
|
|
|
@ -690,7 +690,6 @@ void SerializeMap(FSerializer& arc)
|
|||
("sectors", sector, sectorbackup)
|
||||
("walls", wall, wallbackup)
|
||||
|
||||
("tailspritefree", tailspritefree)
|
||||
("myconnectindex", myconnectindex)
|
||||
("connecthead", connecthead)
|
||||
.Array("connectpoint2", connectpoint2, countof(connectpoint2))
|
||||
|
|
Loading…
Reference in a new issue