]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - image.h
(Round 1) Break up host_cmd.c
[xonotic/darkplaces.git] / image.h
diff --git a/image.h b/image.h
index 21dc012327b2c6b303b41156171dbfcf8c28f50e..5b5cbdaaad955f3287c2ef280a9c6edc0ee89c28 100644 (file)
--- a/image.h
+++ b/image.h
@@ -56,7 +56,7 @@ void Image_MipReduce32(const unsigned char *in, unsigned char *out, int *width,
 void Image_HeightmapToNormalmap_BGRA(const unsigned char *inpixels, unsigned char *outpixels, int width, int height, int clamp, float bumpscale);
 
 // console command to fix the colors of transparent pixels (to prevent weird borders)
-void Image_FixTransparentPixels_f(void);
+void Image_FixTransparentPixels_f(cmd_state_t *cmd);
 extern cvar_t r_fixtrans_auto;
 
 #define Image_LinearFloatFromsRGBFloat(c) (((c) <= 0.04045f) ? (c) * (1.0f / 12.92f) : (float)pow(((c) + 0.055f)*(1.0f/1.055f), 2.4f))