From b56f74bf3270582dae7552eb48ec9a3e2b0929dd Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 24 Jul 2020 20:11:50 +0200 Subject: [PATCH] - actually call the postAction callback for the screen job. Fixes missing title music. --- source/core/screenjob.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/core/screenjob.cpp b/source/core/screenjob.cpp index b4615a0f8..2ff12c1f9 100644 --- a/source/core/screenjob.cpp +++ b/source/core/screenjob.cpp @@ -325,6 +325,7 @@ public: void AdvanceJob(bool skip) { + if (index >= 0 && jobs[index].postAction) jobs[index].postAction(); index++; while (index < jobs.Size() && (jobs[index].job == nullptr || (skip && jobs[index].ignoreifskipped))) index++; actionState = clearbefore ? State_Clear : State_Run;