]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
give two csqc functions the proper name
authorRudolf Polzer <divverent@xonotic.org>
Mon, 14 Nov 2011 05:43:21 +0000 (06:43 +0100)
committerRudolf Polzer <divverent@xonotic.org>
Mon, 14 Nov 2011 05:43:21 +0000 (06:43 +0100)
qcsrc/client/csqc_builtins.qc

index 6ef34f35eab5fa8109e2eda628b889ace10a431d..35cf6b19bcd6aa87308efbd243064b98269c3bc7 100644 (file)
@@ -120,8 +120,8 @@ void (string s, ...)                                                        print = #339;
 void (float scale)                                                     setsensitivityscale = #346;
 
 
-void (float framenum)                                                  RetrieveMovementFrame = #345;
-void ()                                                                        DefaultPlayerPhysics = #347;
+float (float framenum)                                                 getinputstate = #345;
+void (entity e)                                                                        runstandardplayerphysics = #347;
 
 string (float playernum, string key)                                   getplayerkey = #348;
 void (string cmdname)                                                  registercmd = #352;