This commit is contained in:
Steam Deck User 2023-03-01 19:33:20 -05:00
commit ba181a6a3e
2 changed files with 5 additions and 7 deletions

View file

@ -277,17 +277,15 @@ void PF_setmodel (void)
/* /*
================= =================
PF_bprint PF_bprint
broadcast print to everyone on server broadcast print to everyone on server
bprint(style, value)
bprint(value)
================= =================
*/ */
void PF_bprint (void) void PF_bprint (void)
{ {
char *s; //
float style = G_FLOAT(OFS_PARM0);
s = PF_VarString(0); char *s = PF_VarString(1);
SV_BroadcastPrintf ("%s", s); SV_BroadcastPrintf ("%s", s);
} }

View file

@ -912,7 +912,7 @@ void R_RenderBrushPoly (msurface_t *fa)
} }
sceGuEnable(GU_ALPHA_TEST); sceGuEnable(GU_ALPHA_TEST);
sceGuAlphaFunc(GU_GREATER, 0x88, 0xff); sceGuAlphaFunc(GU_GREATER, 0xaa, 0xff);
sceGuTexFunc(GU_TFX_MODULATE, GU_TCC_RGBA); sceGuTexFunc(GU_TFX_MODULATE, GU_TCC_RGBA);
// motolegacy -- use our new texflag hack // motolegacy -- use our new texflag hack