]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
strafehud: move GeomLerp declaration so that it also applies to the strafehud sub...
authorJuhu <5894800-Juhu_@users.noreply.gitlab.com>
Thu, 26 Sep 2024 16:42:15 +0000 (18:42 +0200)
committerJuhu <5894800-Juhu_@users.noreply.gitlab.com>
Thu, 26 Sep 2024 16:42:15 +0000 (18:42 +0200)
qcsrc/client/hud/panel/strafehud.qc
qcsrc/client/hud/panel/strafehud.qh

index 7dd27dce2da99348cfb187ccceba3e842e00b7b2..1b385f39be6e8bb42c77b36f6923322b23d220ed 100644 (file)
@@ -21,8 +21,6 @@ void HUD_StrafeHUD_Export(int fh)
        // allow saving cvars that aesthetically change the panel into hud skin files
 }
 
-float GeomLerp(float a, float _lerp, float b); // declare GeomLerp here since there's no header file for it
-
 void HUD_StrafeHUD()
 {
        static float hud_lasttime = 0;
index ac503a81b51240d181b07240b1828dec9f3a792f..041d69c12c9ee4e632111d8aaef9983fe9d723b4 100644 (file)
@@ -137,3 +137,5 @@ const int STRAFEHUD_PROJECTION_PERSPECTIVE = 1;
 const int STRAFEHUD_PROJECTION_PANORAMIC = 2;
 
 const float ACOS_SQRT2_3_DEG = 35.2643896827546543153;  /* acos(sqrt(2/3)) * RAD2DEG */
+
+float GeomLerp(float a, float _lerp, float b); // declare GeomLerp here since there's no header file for it