mirror of
https://github.com/nzp-team/dquakeplus.git
synced 2025-02-17 00:51:11 +00:00
Fix bprint not reading OFS_PARM0
This commit is contained in:
parent
d41d664644
commit
84835d334a
1 changed files with 4 additions and 6 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue