diff options
Diffstat (limited to 'src/game')
| -rw-r--r-- | src/game/client/components/hud.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/client/components/hud.cpp b/src/game/client/components/hud.cpp index 239bcd17..f7e00edb 100644 --- a/src/game/client/components/hud.cpp +++ b/src/game/client/components/hud.cpp @@ -231,11 +231,11 @@ void CHud::RenderVoting() const char *pYesKey = m_pClient->m_pBinds->GetKey("vote yes"); const char *pNoKey = m_pClient->m_pBinds->GetKey("vote no"); - str_format(Buf, sizeof(Buf), "%s - %s", pYesKey, Localize("Vote Yes")); + str_format(Buf, sizeof(Buf), "%s - %s", pYesKey, Localize("Vote yes")); Base.y += Base.h+1; UI()->DoLabel(&Base, Buf, 6.0f, -1); - str_format(Buf, sizeof(Buf), "%s - %s", Localize("Vote No"), pNoKey); + str_format(Buf, sizeof(Buf), "%s - %s", Localize("Vote no"), pNoKey); UI()->DoLabel(&Base, Buf, 6.0f, 1); } |