mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-30 07:51:59 +00:00
- Duke: Fix issues in recordoldspritepos()
following changes in 7043092fd0
.
* Fixes #129.
This commit is contained in:
parent
6385539144
commit
3582717c43
1 changed files with 1 additions and 2 deletions
|
@ -5108,10 +5108,9 @@ int LocateTheLocator(int n, int sn)
|
||||||
|
|
||||||
void recordoldspritepos()
|
void recordoldspritepos()
|
||||||
{
|
{
|
||||||
|
|
||||||
for (int statNum = 0; statNum < MAXSTATUS; statNum++)
|
for (int statNum = 0; statNum < MAXSTATUS; statNum++)
|
||||||
{
|
{
|
||||||
StatIterator it(STAT_STANDABLE);
|
StatIterator it(statNum);
|
||||||
int j;
|
int j;
|
||||||
while ((j = it.NextIndex()) >= 0)
|
while ((j = it.NextIndex()) >= 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue