mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +00:00
- Fixed: DEM_CENTERVIEW also needs to reset the LocalViewPitch if it's for the consoleplayer.
SVN r3511 (trunk)
This commit is contained in:
parent
d8f509a73a
commit
ee20c2169e
1 changed files with 4 additions and 0 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue