mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-30 13:21:04 +00:00
- 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:
parent
51f35550a9
commit
49642c3b3c
1 changed files with 0 additions and 7 deletions
|
@ -135,13 +135,6 @@ public:
|
||||||
{
|
{
|
||||||
int currentclock = int(clock * 120 / 1'000'000'000);
|
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)
|
if (currentclock < nextframetime - 1)
|
||||||
{
|
{
|
||||||
twod->ClearScreen();
|
twod->ClearScreen();
|
||||||
|
|
Loading…
Reference in a new issue