mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-31 04:20:42 +00:00
- actually call the postAction callback for the screen job.
Fixes missing title music.
This commit is contained in:
parent
e9e4ebbfea
commit
b56f74bf32
1 changed files with 1 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue