From: Rudolf Polzer Date: Mon, 14 Nov 2011 05:43:21 +0000 (+0100) Subject: give two csqc functions the proper name X-Git-Tag: xonotic-v0.6.0~35^2~65 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=9dccb1fd015476556d16773630f3976c16dc2cb3;p=xonotic%2Fxonotic-data.pk3dir.git give two csqc functions the proper name --- diff --git a/qcsrc/client/csqc_builtins.qc b/qcsrc/client/csqc_builtins.qc index 6ef34f35e..35cf6b19b 100644 --- a/qcsrc/client/csqc_builtins.qc +++ b/qcsrc/client/csqc_builtins.qc @@ -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;