- actually call the postAction callback for the screen job.

Fixes missing title music.
This commit is contained in:
Christoph Oelckers 2020-07-24 20:11:50 +02:00
parent e9e4ebbfea
commit b56f74bf32
1 changed files with 1 additions and 0 deletions

View File

@ -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;