mirror of
https://github.com/mapbase-source/source-sdk-2013.git
synced 2025-06-01 16:37:41 +03:00
Fix suit power HUD checking for actual sprint instead of sprint device
This commit is contained in:
parent
3f64380755
commit
3265f840b6
@ -100,7 +100,11 @@ void CHudSuitPower::OnThink( void )
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool flashlightActive = pPlayer->IsFlashlightActive();
|
bool flashlightActive = pPlayer->IsFlashlightActive();
|
||||||
|
#ifdef MAPBASE
|
||||||
|
bool sprintActive = pPlayer->IsSprintActive();
|
||||||
|
#else
|
||||||
bool sprintActive = pPlayer->IsSprinting();
|
bool sprintActive = pPlayer->IsSprinting();
|
||||||
|
#endif
|
||||||
bool breatherActive = pPlayer->IsBreatherActive();
|
bool breatherActive = pPlayer->IsBreatherActive();
|
||||||
int activeDevices = (int)flashlightActive + (int)sprintActive + (int)breatherActive;
|
int activeDevices = (int)flashlightActive + (int)sprintActive + (int)breatherActive;
|
||||||
|
|
||||||
@ -250,7 +254,11 @@ void CHudSuitPower::Paint()
|
|||||||
ypos += text2_gap;
|
ypos += text2_gap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef MAPBASE
|
||||||
|
if (pPlayer->IsSprintActive())
|
||||||
|
#else
|
||||||
if (pPlayer->IsSprinting())
|
if (pPlayer->IsSprinting())
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
tempString = g_pVGuiLocalize->Find("#Valve_Hud_SPRINT");
|
tempString = g_pVGuiLocalize->Find("#Valve_Hud_SPRINT");
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user