From 25d383ac73accbcfc6f58ff23b87a33fbc862c2c Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 24 Jul 2020 19:05:34 +0200 Subject: [PATCH] - re-enabled skipping of MVE movies which was disabled for easier debugging. --- source/core/screenjob.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/screenjob.cpp b/source/core/screenjob.cpp index e874fde55..b4615a0f8 100644 --- a/source/core/screenjob.cpp +++ b/source/core/screenjob.cpp @@ -202,7 +202,7 @@ public: twod->ClearScreen(); DrawTexture(twod, decoder.animTex().GetFrame(), 0, 0, DTA_FullscreenEx, 3, TAG_DONE); - return /* skiprequest ? -1 :*/ playon ? 1 : 0; + return skiprequest ? -1 : playon ? 1 : 0; } void OnDestroy() override