From 4ec748a92bcdad88298d6b379e1640b5bad22d1f Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 4 Aug 2022 23:46:43 +0200 Subject: [PATCH] - removed some unused variables and declarations. --- source/build/include/build.h | 19 +------------------ source/core/savegamehelp.cpp | 1 - 2 files changed, 1 insertion(+), 19 deletions(-) diff --git a/source/build/include/build.h b/source/build/include/build.h index eb2cc1366..d556fc84e 100644 --- a/source/build/include/build.h +++ b/source/build/include/build.h @@ -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; diff --git a/source/core/savegamehelp.cpp b/source/core/savegamehelp.cpp index 9fe573921..1d4c5d0b7 100644 --- a/source/core/savegamehelp.cpp +++ b/source/core/savegamehelp.cpp @@ -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))