Disable 16bpp drawing code since nothing of it is currently used anyway

This commit is contained in:
Monster Iestyn 2016-04-29 18:32:03 +01:00
parent 8fd8f2c316
commit 770fa6f924
2 changed files with 4 additions and 0 deletions

View File

@ -801,4 +801,6 @@ void R_DrawViewBorder(void)
// INCLUDE 16bpp DRAWING CODE HERE // INCLUDE 16bpp DRAWING CODE HERE
// ========================================================================== // ==========================================================================
#ifdef HIGHCOLOR
#include "r_draw16.c" #include "r_draw16.c"
#endif

View File

@ -169,11 +169,13 @@ void R_DrawColumnShadowed_8(void);
// 16bpp DRAWING CODE // 16bpp DRAWING CODE
// ------------------ // ------------------
#ifdef HIGHCOLOR
void R_DrawColumn_16(void); void R_DrawColumn_16(void);
void R_DrawWallColumn_16(void); void R_DrawWallColumn_16(void);
void R_DrawTranslucentColumn_16(void); void R_DrawTranslucentColumn_16(void);
void R_DrawTranslatedColumn_16(void); void R_DrawTranslatedColumn_16(void);
void R_DrawSpan_16(void); void R_DrawSpan_16(void);
#endif
// ========================================================================= // =========================================================================
#endif // __R_DRAW__ #endif // __R_DRAW__