mirror of
https://github.com/nzp-team/dquakeplus.git
synced 2025-01-19 06:10:52 +00:00
Merge branch 'main' of https://github.com/nzp-team/dquakeplus
This commit is contained in:
commit
ba181a6a3e
2 changed files with 5 additions and 7 deletions
|
@ -277,17 +277,15 @@ void PF_setmodel (void)
|
|||
/*
|
||||
=================
|
||||
PF_bprint
|
||||
|
||||
broadcast print to everyone on server
|
||||
|
||||
bprint(value)
|
||||
bprint(style, value)
|
||||
=================
|
||||
*/
|
||||
void PF_bprint (void)
|
||||
{
|
||||
char *s;
|
||||
|
||||
s = PF_VarString(0);
|
||||
//
|
||||
float style = G_FLOAT(OFS_PARM0);
|
||||
char *s = PF_VarString(1);
|
||||
SV_BroadcastPrintf ("%s", s);
|
||||
}
|
||||
|
||||
|
|
|
@ -912,7 +912,7 @@ void R_RenderBrushPoly (msurface_t *fa)
|
|||
}
|
||||
|
||||
sceGuEnable(GU_ALPHA_TEST);
|
||||
sceGuAlphaFunc(GU_GREATER, 0x88, 0xff);
|
||||
sceGuAlphaFunc(GU_GREATER, 0xaa, 0xff);
|
||||
sceGuTexFunc(GU_TFX_MODULATE, GU_TCC_RGBA);
|
||||
|
||||
// motolegacy -- use our new texflag hack
|
||||
|
|
Loading…
Reference in a new issue