]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - image.h
rename the function
[xonotic/darkplaces.git] / image.h
diff --git a/image.h b/image.h
index 04d33378ff1be29f4a6610dc2b97b37103c2d91f..823ca397e783f5187a09710752a09ef17d9c4db2 100644 (file)
--- a/image.h
+++ b/image.h
@@ -53,7 +53,7 @@ extern cvar_t r_fixtrans_auto;
 #define Image_sRGBFloatFromLinear(c) (((c) < 1) ? (c) * 0.05046875f : 1.055f * (float)pow((c)*(1.0f/256.0f), 1.0f/2.4f) - 0.055f)
 
 void Image_MakeLinearColorsFromsRGB(unsigned char *pout, const unsigned char *pin, int numpixels);
-void Image_MakesRGBColorsFromLinear(unsigned char *pout, const unsigned char *pin, int numpixels);
+void Image_MakesRGBColorsFromLinear_Lightmap(unsigned char *pout, const unsigned char *pin, int numpixels);
 
 #endif