mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-02-18 01:52:34 +00:00
Fixed a wrong variable type declaration.
This commit is contained in:
parent
c885b6aa35
commit
3c39d51c83
1 changed files with 1 additions and 1 deletions
|
@ -399,7 +399,7 @@ CUSTOM_CVAR (Int, dmflags, 0, CVAR_SERVERINFO)
|
||||||
// If nofov is set, force everybody to the arbitrator's FOV.
|
// If nofov is set, force everybody to the arbitrator's FOV.
|
||||||
if ((self & DF_NO_FOV) && consoleplayer == Net_Arbitrator)
|
if ((self & DF_NO_FOV) && consoleplayer == Net_Arbitrator)
|
||||||
{
|
{
|
||||||
double fov;
|
float fov;
|
||||||
|
|
||||||
Net_WriteByte (DEM_FOV);
|
Net_WriteByte (DEM_FOV);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue