mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 00:42:08 +00:00
- Fix missed flags pass-through in bool StartCutscene(const char* s, int flags, const CompletionFunc& completion)
overload.
This commit is contained in:
parent
63a19bbb15
commit
b6b0887611
1 changed files with 1 additions and 1 deletions
|
@ -334,7 +334,7 @@ bool StartCutscene(const char* s, int flags, const CompletionFunc& completion)
|
|||
{
|
||||
CutsceneDef def;
|
||||
def.function = s;
|
||||
return StartCutscene(def, 0, completion);
|
||||
return StartCutscene(def, flags, completion);
|
||||
}
|
||||
|
||||
//=============================================================================
|
||||
|
|
Loading…
Reference in a new issue