From 39d28cb50b289c714e56e38967057d8a28c1e04c Mon Sep 17 00:00:00 2001 From: terencehill Date: Sat, 3 Dec 2011 19:34:36 +0100 Subject: [PATCH] Just rename 2 functions --- qcsrc/client/Main.qc | 2 +- qcsrc/client/View.qc | 2 +- qcsrc/client/hud.qc | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/qcsrc/client/Main.qc b/qcsrc/client/Main.qc index 3d327dcf6..5057b7eb3 100644 --- a/qcsrc/client/Main.qc +++ b/qcsrc/client/Main.qc @@ -648,7 +648,7 @@ float CSQC_InputEvent(float bInputType, float nPrimary, float nSecondary) if (HUD_Panel_InputEvent(bInputType, nPrimary, nSecondary)) return true; - if (HUD_Panel_QuickMenu_InputEvent(bInputType, nPrimary, nSecondary)) + if (HUD_QuickMenu_InputEvent(bInputType, nPrimary, nSecondary)) return true; if (MapVote_InputEvent(bInputType, nPrimary, nSecondary)) diff --git a/qcsrc/client/View.qc b/qcsrc/client/View.qc index 7461f959b..ee5c56e02 100644 --- a/qcsrc/client/View.qc +++ b/qcsrc/client/View.qc @@ -1411,7 +1411,7 @@ void CSQC_UpdateView(float w, float h) if(autocvar__hud_configure) HUD_Panel_Mouse(); else if (HUD_QuickMenu_IsOpened()) - HUD_Panel_QuickMenu_Mouse(); + HUD_QuickMenu_Mouse(); if(hud && !intermission) { diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index a665ca553..0887a7509 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -5000,7 +5000,7 @@ void HUD_QuickMenu_ActionForNumber(float num) if (QuickMenu_Description[num] != "") HUD_QuickMenu_Open(QuickMenu_Description[num], 0); } -float HUD_Panel_QuickMenu_InputEvent(float bInputType, float nPrimary, float nSecondary) +float HUD_QuickMenu_InputEvent(float bInputType, float nPrimary, float nSecondary) { string s; @@ -5066,7 +5066,7 @@ float HUD_Panel_QuickMenu_InputEvent(float bInputType, float nPrimary, float nSe return true; } -void HUD_Panel_QuickMenu_Mouse() +void HUD_QuickMenu_Mouse() { if (mouseClicked & S_MOUSE2) { -- 2.39.2