From ee20c2169ee100283c4a1cf7d1d43ab093acf4f1 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Tue, 3 Apr 2012 03:51:24 +0000 Subject: [PATCH] - Fixed: DEM_CENTERVIEW also needs to reset the LocalViewPitch if it's for the consoleplayer. SVN r3511 (trunk) --- src/d_net.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/d_net.cpp b/src/d_net.cpp index a26bd58af..648529f70 100644 --- a/src/d_net.cpp +++ b/src/d_net.cpp @@ -2066,6 +2066,10 @@ void Net_DoCommand (int type, BYTE **stream, int player) { players[player].mo->pitch = 0; } + if (player == consoleplayer) + { + LocalViewPitch = 0; + } break; case DEM_INVUSEALL: