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:
helixhorned 2013-06-07 14:26:35 +00:00
parent bd49bc7bbd
commit 01770ec720

View file

@ -7654,7 +7654,9 @@ PALONLY:
break; break;
} }
#ifndef LUNATIC l = klabs(l);
#if !defined LUNATIC
t->picnum += k + script[t_data4] + l*t_data3; t->picnum += k + script[t_data4] + l*t_data3;
#else #else
t->picnum += k + startframe + l*t_data3; t->picnum += k + startframe + l*t_data3;