From 3c39d51c83f9ab379c5fd75774a33d98d9d52b4c Mon Sep 17 00:00:00 2001 From: nashmuhandes Date: Thu, 31 Aug 2017 09:53:37 +0800 Subject: [PATCH] Fixed a wrong variable type declaration. --- src/d_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d_main.cpp b/src/d_main.cpp index f982cc5fb..d82925436 100644 --- a/src/d_main.cpp +++ b/src/d_main.cpp @@ -399,7 +399,7 @@ CUSTOM_CVAR (Int, dmflags, 0, CVAR_SERVERINFO) // If nofov is set, force everybody to the arbitrator's FOV. if ((self & DF_NO_FOV) && consoleplayer == Net_Arbitrator) { - double fov; + float fov; Net_WriteByte (DEM_FOV);