]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
don't spam joy_active notices with developer_extra
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 28 Jun 2011 00:55:10 +0000 (00:55 +0000)
committerRudolf Polzer <divVerent@xonotic.org>
Thu, 30 Jun 2011 05:06:51 +0000 (07:06 +0200)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11225 d7cf8633-e32d-0410-b094-e92efae38249
::stable-branch::merge=cf74e01c006d2937bf1e3a522efc7b2dd0f40ba2

vid_sdl.c

index 4fb37539e4a4117ae4c95e8e0a69a6d93e61e2e7..d356150d6dc2e4d8cb4aafb31e327358ceeafe6d 100644 (file)
--- a/vid_sdl.c
+++ b/vid_sdl.c
@@ -1690,7 +1690,8 @@ void VID_EnableJoystick(qboolean enable)
        if (sdlindex >= 0)
                success = true;
 
-       Cvar_SetValueQuick(&joy_active, success ? 1 : 0);
+       if (joy_active.integer != (success ? 1 : 0))
+               Cvar_SetValueQuick(&joy_active, success ? 1 : 0);
 }
 
 #if SETVIDEOMODE