mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-10 06:32:03 +00:00
NX/VITA: Fix bprint not reading OFS_PARM0
This commit is contained in:
parent
f121d94357
commit
aff753308b
1 changed files with 5 additions and 7 deletions
|
@ -312,17 +312,15 @@ static void PF_setmodel (void)
|
|||
/*
|
||||
=================
|
||||
PF_bprint
|
||||
|
||||
broadcast print to everyone on server
|
||||
|
||||
bprint(value)
|
||||
bprint(style, value)
|
||||
=================
|
||||
*/
|
||||
static void PF_bprint (void)
|
||||
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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue