- allow blocking controller input in the menu.
This commit is contained in:
parent
8cac2d8c84
commit
346ada76bc
4 changed files with 10 additions and 2 deletions
|
|
@ -68,6 +68,7 @@ IMPLEMENT_POINTERS_END
|
|||
|
||||
extern int NoWipe;
|
||||
|
||||
CVAR(Bool, nointerscrollabort, false, CVAR_ARCHIVE | CVAR_GLOBALCONFIG);
|
||||
//==========================================================================
|
||||
//
|
||||
//
|
||||
|
|
@ -647,7 +648,7 @@ void DIntermissionScreenScroller::Init(FIntermissionAction *desc, bool first)
|
|||
int DIntermissionScreenScroller::Responder (event_t *ev)
|
||||
{
|
||||
int res = Super::Responder(ev);
|
||||
if (res == -1)
|
||||
if (res == -1 && !nointerscrollabort)
|
||||
{
|
||||
mBackground = mSecondPic;
|
||||
mTicker = mScrollDelay + mScrollTime;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue