From 3910146740891a0e206f31d7e5e7da9b3ad6512c Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 16 Apr 2021 22:21:57 +0200 Subject: [PATCH] - skip the fade-in of the screen job if it starts while the game is paused. While this works with the current code it simply does not look good. --- 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 b76dc6f0d..575288588 100644 --- a/source/core/screenjob.cpp +++ b/source/core/screenjob.cpp @@ -175,7 +175,7 @@ public: actionState = clearbefore ? State_Clear : State_Run; if (index < jobs.Size()) { - jobs[index].job->fadestate = jobs[index].job->fadestyle & DScreenJob::fadein? DScreenJob::fadein : DScreenJob::visible; + jobs[index].job->fadestate = !paused && jobs[index].job->fadestyle & DScreenJob::fadein? DScreenJob::fadein : DScreenJob::visible; } inputState.ClearAllInput(); }