Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This fixes a bug where fast-forward wouldn't work in 30-FPS-only mode. This is because the 30-FPS-only code has a hardcoded check for the number 34, as in 34 milliseconds must pass before the next frame can advance. This is why slowdown still worked, because slowdown means you're waiting longer than 34 ms anyways, but fast-forward tries to wait for only 1 ms, which wouldn't work if the 34 limit was still enforced. So instead, swap out the 34 with game.get_timestep() and this will be fixed. Fixes #1185.
- Loading branch information