mirror of
https://github.com/nzp-team/glquake.git
synced 2024-11-10 06:31:35 +00:00
Fix for improper bprint call
This commit is contained in:
parent
0232a32c80
commit
3d2ecfbc14
1 changed files with 4 additions and 4 deletions
|
@ -283,14 +283,14 @@ 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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue