From 0881c8542aee9e434d2dfb2b40868f32ddd4cc30 Mon Sep 17 00:00:00 2001 From: Jaime Passos Date: Sun, 13 Oct 2019 19:45:35 -0300 Subject: [PATCH] remove duplicate NearestColor prototype --- src/r_data.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/r_data.h b/src/r_data.h index fc2e53949..e71d45766 100644 --- a/src/r_data.h +++ b/src/r_data.h @@ -159,8 +159,6 @@ const char *R_NameForColormap(extracolormap_t *extra_colormap); #define R_PutRgbaRGBA(r, g, b, a) (R_PutRgbaRGB(r, g, b) + R_PutRgbaA(a)) boolean R_CheckIfPatch(lumpnum_t lump); -UINT8 NearestColor(UINT8 r, UINT8 g, UINT8 b); - void R_TextureToFlat(size_t tex, UINT8 *flat); void R_PatchToFlat(patch_t *patch, UINT8 *flat); patch_t *R_FlatToPatch(UINT8 *raw, UINT16 width, UINT16 height, UINT16 leftoffset, UINT16 topoffset, size_t *destsize, boolean transparency);