mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 09:21:36 +00:00
Fix accessing the wrong animation indices with negative viewtypes.
(I think; untested.) git-svn-id: https://svn.eduke32.com/eduke32@3863 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
bd49bc7bbd
commit
01770ec720
1 changed files with 3 additions and 1 deletions
|
@ -7654,7 +7654,9 @@ PALONLY:
|
|||
break;
|
||||
}
|
||||
|
||||
#ifndef LUNATIC
|
||||
l = klabs(l);
|
||||
|
||||
#if !defined LUNATIC
|
||||
t->picnum += k + script[t_data4] + l*t_data3;
|
||||
#else
|
||||
t->picnum += k + startframe + l*t_data3;
|
||||
|
|
Loading…
Reference in a new issue