mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 14:52:01 +00:00
- Duke: Fix camera advancing angle by 16 instead of 8 under circumstances.
This commit is contained in:
parent
399b27fcbb
commit
e1ee9bc83c
1 changed files with 1 additions and 1 deletions
|
@ -2006,7 +2006,7 @@ void camera(int i)
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
t[1] = 8;
|
t[1] = 8;
|
||||||
s->ang += 16;
|
s->ang += 8;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue