diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/strife/d_main.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/strife/d_main.c b/src/strife/d_main.c index 3d0d269c..855dae7d 100644 --- a/src/strife/d_main.c +++ b/src/strife/d_main.c @@ -479,8 +479,8 @@ boolean D_GrabMouseCallback(void) if (drone) return false; - // when menu is active or game is paused, release the mouse - + // when menu is active or game is paused, release the mouse. + if (menuactive || paused) return false; @@ -489,6 +489,13 @@ boolean D_GrabMouseCallback(void) return (gamestate == GS_LEVEL) && !demoplayback; } +// During startup, never grab the mouse. + +static boolean D_StartupGrabCallback(void) +{ + return false; +} + // // D_DoomLoop // @@ -1156,6 +1163,7 @@ static void D_InitIntroSequence(void) // In vanilla Strife, Mode 13h was initialized directly in D_DoomMain. // We have to be a little more courteous of the low-level code here. I_SetWindowTitle(gamedescription); + I_SetGrabMouseCallback(D_StartupGrabCallback); I_InitGraphics(); V_RestoreBuffer(); // make the V_ routines work |