From: MirceaKitsune Date: Fri, 25 Feb 2011 22:59:52 +0000 (+0200) Subject: Separate image file for the food splash. Currently the same as the blood one, but... X-Git-Url: https://de.git.xonotic.org/?a=commitdiff_plain;h=d211bc46739c34ed3ca4a83828fd387d55439d2a;p=voretournament%2Fvoretournament.git Separate image file for the food splash. Currently the same as the blood one, but flipped to conflict less with it --- diff --git a/data/gfx/food.tga b/data/gfx/food.tga new file mode 100644 index 00000000..946d235a Binary files /dev/null and b/data/gfx/food.tga differ diff --git a/data/qcsrc/client/View.qc b/data/qcsrc/client/View.qc index e5bc1907..f221da7f 100644 --- a/data/qcsrc/client/View.qc +++ b/data/qcsrc/client/View.qc @@ -608,7 +608,7 @@ void CSQC_UpdateView(float w, float h) stomachsplash_alpha = 0; } stomachsplash_alpha = bound(0, stomachsplash_alpha, 1); - drawpic('0 0 0', "gfx/blood", '1 0 0' * vid_conwidth + '0 1 0' * vid_conheight, stov(cvar_string("hud_stomach_color")), stomachsplash_alpha, DRAWFLAG_NORMAL); + drawpic('0 0 0', "gfx/food", '1 0 0' * vid_conwidth + '0 1 0' * vid_conheight, stov(cvar_string("hud_stomach_color")), stomachsplash_alpha, DRAWFLAG_NORMAL); } if(cvar("hud_postprocessing"))