mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-16 01:11:28 +00:00
Fix non-asm build, I forgot a line with the preceding change.
git-svn-id: https://svn.eduke32.com/eduke32@2355 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
c965d9d70a
commit
b4f63547c4
1 changed files with 4 additions and 0 deletions
|
@ -7123,7 +7123,11 @@ static void dorotatesprite(int32_t sx, int32_t sy, int32_t z, int16_t a, int16_t
|
|||
}
|
||||
else
|
||||
{
|
||||
#if !defined ENGINE_USING_A_C
|
||||
tsetupspritevline(palookupoffs,(xv>>16)*ysiz,xv<<16,ysiz,yv,0L);
|
||||
#else
|
||||
tsetupspritevline(palookupoffs,xv,yv,ysiz);
|
||||
#endif
|
||||
if (dastat&32) settransreverse(); else settransnormal();
|
||||
}
|
||||
for (x=x1; x<x2; x++)
|
||||
|
|
Loading…
Reference in a new issue