Commit 36cbd50685dc4de826f9e83468de47e34f7b78de

Philipp Wiesemann 2013-12-25T00:04:31

Fixed unused local variable warning in test program source.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/test/controllermap.c b/test/controllermap.c
index c17f17c..08b85a7 100644
--- a/test/controllermap.c
+++ b/test/controllermap.c
@@ -114,7 +114,7 @@ WatchJoystick(SDL_Joystick * joystick)
     SDL_bool done = SDL_FALSE, next=SDL_FALSE;
     SDL_Event event;
     SDL_Rect dst;
-    int i, s, _s;
+    int s, _s;
     Uint8 alpha=200, alpha_step = -1;
     Uint32 alpha_ticks;
     char mapping[4096], temp[4096];