- SW: Ensure all sprite angles are backed up in the ticker.

* Fixes #326.
This commit is contained in:
Mitchell Richters 2021-04-20 21:33:42 +10:00
parent 321bfe86f8
commit 0c5729b0f6
1 changed files with 6 additions and 0 deletions

View File

@ -6892,6 +6892,12 @@ MoveSkipSavePos(void)
}
}
}
// back up all sprite angles.
for (int i = 0; i < MAXSPRITES; i++)
{
sprite[i].backupang();
}
}