mirror of
https://github.com/ZDoom/qzdoom-gpl.git
synced 2024-11-16 09:11:17 +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;
|
players[player].mo->pitch = 0;
|
||||||
}
|
}
|
||||||
|
if (player == consoleplayer)
|
||||||
|
{
|
||||||
|
LocalViewPitch = 0;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case DEM_INVUSEALL:
|
case DEM_INVUSEALL:
|
||||||
|
|
Loading…
Reference in a new issue