]> git.jsancho.org Git - lugaru.git/commitdiff
Removed an unused function
authorCôme BERNIGAUD <come.bernigaud@gmail.com>
Fri, 4 Jun 2010 19:48:39 +0000 (21:48 +0200)
committerCôme BERNIGAUD <come.bernigaud@gmail.com>
Fri, 4 Jun 2010 19:48:39 +0000 (21:48 +0200)
Source/OpenGL_Windows.cpp

index 7e32f0bbee6ceaede81f2dd56295954275211abc..ac4a13ad6d3543a58de4707a0e3c0ba8164b549a 100644 (file)
@@ -286,18 +286,6 @@ void DrawGL (Game & game)
        }
 }
 
-static inline int clamp_sdl_mouse_button(Uint8 button)
-{
-    if (button == 2)   // right mouse button is button 3 in SDL.
-        button = 3;
-    else if (button == 3)
-        button = 2;
-
-    if ((button >= 1) && (button <= 3))
-        return button - 1;
-    return -1;
-}
-
 static void sdlEventProc(const SDL_Event &e, Game &game)
 {
     int val;
@@ -319,9 +307,6 @@ static void sdlEventProc(const SDL_Event &e, Game &game)
                                SDL_WM_ToggleFullScreen(SDL_GetVideoSurface());
             }
             return;
-
-        case SDL_KEYUP:
-            return;
     }
 }