# HG changeset patch # User Sam Lantinga # Date 993333747 0 # Node ID 8806bc1eb80e5873c3d0d705217c787dca540bcc # Parent ffadd05de74db3630ce4ec01b6dce61aa63995cb Oops, reversed the logic of the variable diff -r ffadd05de74d -r 8806bc1eb80e src/video/x11/SDL_x11mouse.c --- a/src/video/x11/SDL_x11mouse.c Sat Jun 23 22:00:59 2001 +0000 +++ b/src/video/x11/SDL_x11mouse.c Sat Jun 23 22:02:27 2001 +0000 @@ -236,7 +236,7 @@ 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); }