diff --git a/src/i_system.h b/src/i_system.h
index e046fd620114161ddf49e7bba50685547cd7d32a..a3790dca34b115be6ede007cd59b09ca11c9423f 100644
--- a/src/i_system.h
+++ b/src/i_system.h
@@ -318,10 +318,6 @@ void I_RegisterSysCommands(void);
 */
 void I_GetCursorPosition(INT32 *x, INT32 *y);
 
-/** \brief Returns whether the mouse is grabbed
-*/
-boolean I_GetMouseGrab(void);
-
 /** \brief Sets whether the mouse is grabbed
 */
 void I_SetMouseGrab(boolean grab);
diff --git a/src/sdl/i_video.c b/src/sdl/i_video.c
index 97e4a7214b420a2b4a3764eb5b505f500f161799..ed766ff23dfb79395bbb5648211be73c45fc34b6 100644
--- a/src/sdl/i_video.c
+++ b/src/sdl/i_video.c
@@ -409,11 +409,6 @@ void I_UpdateMouseGrab(void)
 		SDLdoGrabMouse();
 }
 
-boolean I_GetMouseGrab(void)
-{
-	return (boolean)SDL_GetWindowGrab(window);
-}
-
 void I_SetMouseGrab(boolean grab)
 {
 	if (grab)