From 4632d85553396d06137f195ae754e0e7e45cedfd Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Fri, 9 Sep 2011 21:47:25 +0000 Subject: [PATCH] Removed unused IN_ButtonDown and IN_ButtonUp functions. --- code/client/cl_input.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/code/client/cl_input.c b/code/client/cl_input.c index e9612c24..4153b66d 100644 --- a/code/client/cl_input.c +++ b/code/client/cl_input.c @@ -267,11 +267,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]); }