Mercurial > sdl-ios-xcode
changeset 80:8806bc1eb80e
Oops, reversed the logic of the variable
author | Sam Lantinga <slouken@lokigames.com> |
---|---|
date | Sat, 23 Jun 2001 22:02:27 +0000 |
parents | ffadd05de74d |
children | 1a2723474f12 |
files | src/video/x11/SDL_x11mouse.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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); }