Remove functions no longer needed with skincolors[]

This commit is contained in:
Sally Coolatta 2020-08-12 20:59:30 -04:00
parent f9ca40e673
commit 1c9284fbad

View file

@ -19,21 +19,6 @@
#define DEFAULT_STARTTRANSCOLOR 96 #define DEFAULT_STARTTRANSCOLOR 96
#define NUM_PALETTE_ENTRIES 256 #define NUM_PALETTE_ENTRIES 256
/*--------------------------------------------------
INT32 K_SkincolorToTextColor(UINT8 skincolor);
Gives you the "text" color (V_ constants) from a skincolor (SKINCOLOR_ constants).
Used primarily by the chat system.
Input Arguments:-
skincolor - SKINCOLOR_ constant
Return:-
V_ constant for font coloring
--------------------------------------------------*/
INT32 K_SkincolorToTextColor(UINT8 skincolor);
/*-------------------------------------------------- /*--------------------------------------------------
UINT8 K_ColorRelativeLuminance(UINT8 r, UINT8 g, UINT8 b); UINT8 K_ColorRelativeLuminance(UINT8 r, UINT8 g, UINT8 b);
@ -82,17 +67,4 @@ void K_RainbowColormap(UINT8 *dest_colormap, UINT8 skincolor);
--------------------------------------------------*/ --------------------------------------------------*/
void K_GenerateKartColormap(UINT8 *dest_colormap, INT32 skinnum, UINT8 color); void K_GenerateKartColormap(UINT8 *dest_colormap, INT32 skinnum, UINT8 color);
/*--------------------------------------------------
UINT8 K_GetKartColorByName(const char *name);
Finds the corresponding SKINCOLOR_ constant to the string provided.
Input Arguments:-
name - The name of the color desired.
Return:-
SKINCOLOR_ constant, SKINCOLOR_NONE if invalid
--------------------------------------------------*/
UINT8 K_GetKartColorByName(const char *name);
#endif #endif