- removed the slowdown killswitch from the ANM player.

This did not play well with SW and is generally not needed.
This commit is contained in:
Christoph Oelckers 2020-09-30 00:28:17 +02:00
parent 51f35550a9
commit 49642c3b3c

View file

@ -135,13 +135,6 @@ public:
{
int currentclock = int(clock * 120 / 1'000'000'000);
if (curframe > 4 && currentclock > frametime + 60)
{
Printf(PRINT_BOLD, "WARNING: slowdown in video playback, aborting\n");
soundEngine->StopAllChannels();
return -1;
}
if (currentclock < nextframetime - 1)
{
twod->ClearScreen();