- 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

View file

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