mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-14 00:20:51 +00:00
- allow taking screenshots in cutscenes.
This commit is contained in:
parent
18115ef455
commit
74866c28ce
1 changed files with 5 additions and 0 deletions
|
@ -208,6 +208,11 @@ bool ScreenJobResponder(event_t* ev)
|
||||||
C_ToggleConsole();
|
C_ToggleConsole();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
if (binding.CompareNoCase("screenshot") == 0)
|
||||||
|
{
|
||||||
|
C_DoCommand("screenshot");
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
FInputEvent evt = ev;
|
FInputEvent evt = ev;
|
||||||
if (cutscene.runner)
|
if (cutscene.runner)
|
||||||
|
|
Loading…
Reference in a new issue