]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
renamed CL_Move to CL_Input to avoid confusion with the CL_Move that will be added...
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 18 Feb 2007 12:49:24 +0000 (12:49 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 18 Feb 2007 12:49:24 +0000 (12:49 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6854 d7cf8633-e32d-0410-b094-e92efae38249

cl_input.c
client.h
host.c

index d629596066163e10ca9aa38c69ef0380fed35151..8bdec9a84de9dd6360bd5c649967faecee880e92 100644 (file)
@@ -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;
index 5bba6b51986b575c7b546af713b1cc46c705498c..297b5d6b8b3152f72f6f467b524aa575ee836a8d 100644 (file)
--- 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 6a8c0352b55b85dfc3085ebe8cf4e504fde0f813..a9050113221d2280bf956332a08df2a15f741a87 100644 (file)
--- 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();