Commit f0aa97d20fb610bb379cde409791d278f26c220c

Ryan C. Gordon 2014-02-10T01:43:01

Removed unused function.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
diff --git a/test/controllermap.c b/test/controllermap.c
index aa6c1cb..e72174c 100644
--- a/test/controllermap.c
+++ b/test/controllermap.c
@@ -96,13 +96,6 @@ LoadTexture(SDL_Renderer *renderer, char *file, SDL_bool transparent)
     return texture;
 }
 
-static void
-DrawRect(SDL_Renderer *r, const int x, const int y, const int w, const int h)
-{
-    const SDL_Rect area = { x, y, w, h };
-    SDL_RenderFillRect(r, &area);
-}
-
 static SDL_bool
 WatchJoystick(SDL_Joystick * joystick)
 {