From: havoc Date: Sun, 18 Feb 2007 12:49:24 +0000 (+0000) Subject: renamed CL_Move to CL_Input to avoid confusion with the CL_Move that will be added... X-Git-Tag: xonotic-v0.1.0preview~3561 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=e3d61760f1dec49cb93eb98882cd2a7948ac5362;p=xonotic%2Fdarkplaces.git renamed CL_Move to CL_Input to avoid confusion with the CL_Move that will be added (similar to SV_Move) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6854 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cl_input.c b/cl_input.c index d6295960..8bdec9a8 100644 --- a/cl_input.c +++ b/cl_input.c @@ -404,12 +404,12 @@ qboolean cl_ignoremousemove = false; /* ================ -CL_Move +CL_Input Send the intended movement message to the server ================ */ -void CL_Move (void) +void CL_Input (void) { float mx, my; static float old_mouse_x = 0, old_mouse_y = 0; diff --git a/client.h b/client.h index 5bba6b51..297b5d6b 100644 --- a/client.h +++ b/client.h @@ -1051,7 +1051,7 @@ void CL_SetInfo(const char *key, const char *value, qboolean send, qboolean allo int CL_ReadFromServer (void); void CL_WriteToServer (void); -void CL_Move (void); +void CL_Input (void); extern qboolean cl_ignoremousemove; diff --git a/host.c b/host.c index 6a8c0352..a9050113 100644 --- a/host.c +++ b/host.c @@ -797,7 +797,7 @@ void Host_Main(void) cl.time += frametime; // Collect input into cmd - CL_Move(); + CL_Input(); NetConn_ClientFrame();