diff options
-rw-r--r-- | src/i_video.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/i_video.c b/src/i_video.c index ade81d03..f2ffe33c 100644 --- a/src/i_video.c +++ b/src/i_video.c @@ -175,6 +175,11 @@ static boolean MouseShouldBeGrabbed() if (fullscreen != FULLSCREEN_OFF) return true; + // Drone players don't need mouse focus + + if (drone) + return false; + // if we specify not to grab the mouse, never grab if (!grabmouse) |