From f7fdabaea206eb9e19a7d87af05e8a282ae8ad1b Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 23 Jun 2001 22:02:27 +0000 Subject: [PATCH] Oops, reversed the logic of the variable --- src/video/x11/SDL_x11mouse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/x11/SDL_x11mouse.c b/src/video/x11/SDL_x11mouse.c index 33c8614b5..74e45584a 100644 --- a/src/video/x11/SDL_x11mouse.c +++ b/src/video/x11/SDL_x11mouse.c @@ -236,7 +236,7 @@ void X11_CheckMouseModeNoLock(_THIS) They almost never want to do this, as it seriously affects applications that rely on continuous relative mouse motion. */ - env_override = getenv("SDL_MOUSE_NORELATIVE"); + env_override = getenv("SDL_MOUSE_RELATIVE"); if ( env_override ) { enable_relative = atoi(env_override); }