sdlayer.c: fix grabmouse_low() with DEBUGGINGAIDS!=0 builds. DONT_BUILD.

git-svn-id: https://svn.eduke32.com/eduke32@4446 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2014-04-18 13:20:56 +00:00
parent dd8cd8277e
commit 974fd50052

View file

@ -831,6 +831,9 @@ static inline char grabmouse_low(char a)
SDL_SetWindowGrab(sdl_window, a ? SDL_TRUE : SDL_FALSE);
return SDL_SetRelativeMouseMode(a ? SDL_TRUE : SDL_FALSE);
#endif
#else
UNREFERENCED_PARAMETER(a);
return 0;
#endif
}