]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - palette.h
eliminated qbyte type, now uses unsigned char throughout the engine for this purpose
[xonotic/darkplaces.git] / palette.h
index 2824717ab96e031a6dfed3362e9a5f2098c7da64..d344df278201762e84e1dc9c5fe21248d4137f70 100644 (file)
--- a/palette.h
+++ b/palette.h
@@ -13,7 +13,7 @@ extern unsigned int palette_alpha[256];
 extern unsigned int palette_font[256];
 
 // used by hardware gamma functions in vid_* files
-void BuildGammaTable8(float prescale, float gamma, float scale, float base, qbyte *out);
+void BuildGammaTable8(float prescale, float gamma, float scale, float base, unsigned char *out);
 void BuildGammaTable16(float prescale, float gamma, float scale, float base, unsigned short *out);
 
 void Palette_Init(void);