From 77077a084e859ffd4fa4bb60511d877613e8a454 Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Fri, 9 Sep 2011 21:47:25 +0000 Subject: Removed unused IN_ButtonDown and IN_ButtonUp functions. --- src/client/cl_input.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/client') diff --git a/src/client/cl_input.c b/src/client/cl_input.c index e25c840d..1823b9b4 100644 --- a/src/client/cl_input.c +++ b/src/client/cl_input.c @@ -268,11 +268,6 @@ void IN_Button14Up(void) {IN_KeyUp(&in_buttons[14]);} void IN_Button15Down(void) {IN_KeyDown(&in_buttons[15]);} void IN_Button15Up(void) {IN_KeyUp(&in_buttons[15]);} -void IN_ButtonDown (void) { - IN_KeyDown(&in_buttons[1]);} -void IN_ButtonUp (void) { - IN_KeyUp(&in_buttons[1]);} - void IN_CenterView (void) { cl.viewangles[PITCH] = -SHORT2ANGLE(cl.snap.ps.delta_angles[PITCH]); } -- cgit