From 49642c3b3c70a78c6b941f11467cc5520dff172f Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 30 Sep 2020 00:28:17 +0200 Subject: [PATCH] - removed the slowdown killswitch from the ANM player. This did not play well with SW and is generally not needed. --- source/core/screenjob.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/source/core/screenjob.cpp b/source/core/screenjob.cpp index b7fa5e5cd..0df4952b8 100644 --- a/source/core/screenjob.cpp +++ b/source/core/screenjob.cpp @@ -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();