Skip to content

Commit 73487d0

Browse files
refactor map help text strings
1 parent d24230c commit 73487d0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Client/mods/deathmatch/logic/CRadarMap.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ CRadarMap::CRadarMap(CClientManager* pManager)
7474
float fScale;
7575
SString strMessage;
7676
} messageList[] = {
77-
{SColorRGBA(255, 255, 255, 200), 0.92f, 1.0f, ""},
77+
{SColorRGBA(255, 255, 255, 200), 0.92f, 1.5f, ""},
7878
{SColorRGBA(255, 255, 255, 255), 0.95f, 1.0f, SString(_("Change mode: %s"), *GetBoundKeyName("radar_attach"))},
7979
{SColorRGBA(255, 255, 255, 255), 0.05f, 1.0f, SString(_("Zoom in/out: %s/%s"), *GetBoundKeyName("radar_zoom_in"), *GetBoundKeyName("radar_zoom_out"))},
80-
{SColorRGBA(255, 255, 255, 255), 0.08f, 1.0f, SString(_("Movement: %s, %s, %s, %s"), *GetBoundKeyName("radar_move_north"), *GetBoundKeyName("radar_move_east"), *GetBoundKeyName("radar_move_south"), *GetBoundKeyName("radar_move_west"))},
81-
{SColorRGBA(255, 255, 255, 255), 0.11f, 1.0f, SString(_("Change opacity: %s/%s"), *GetBoundKeyName("radar_opacity_down"), *GetBoundKeyName("radar_opacity_up"))},
82-
{SColorRGBA(255, 255, 255, 255), 0.14f, 1.0f, SString(_("Toggle map: %s"), *GetBoundKeyName("radar"))},
83-
{SColorRGBA(255, 255, 255, 255), 0.17f, 1.0f, SString(_("Hide this help text: %s"), *GetBoundKeyName("radar_help"))},
80+
{SColorRGBA(255, 255, 255, 255), 0.07f, 1.0f, SString(_("Movement: %s, %s, %s, %s"), *GetBoundKeyName("radar_move_north"), *GetBoundKeyName("radar_move_east"), *GetBoundKeyName("radar_move_south"), *GetBoundKeyName("radar_move_west"))},
81+
{SColorRGBA(255, 255, 255, 255), 0.09f, 1.0f, SString(_("Decrease/increase opacity: %s/%s"), *GetBoundKeyName("radar_opacity_down"), *GetBoundKeyName("radar_opacity_up"))},
82+
{SColorRGBA(255, 255, 255, 255), 0.11f, 1.0f, SString(_("Toggle map: %s"), *GetBoundKeyName("radar"))},
83+
{SColorRGBA(255, 255, 255, 255), 0.13f, 1.0f, SString(_("Toggle this help text: %s"), *GetBoundKeyName("radar_help"))},
8484
};
8585

8686
for (uint i = 0; i < NUMELMS(messageList); i++)
@@ -674,11 +674,11 @@ void CRadarMap::SetAttachedToLocalPlayer(bool bIsAttachedToLocal)
674674

675675
if (m_bIsAttachedToLocal)
676676
{
677-
m_HelpTextList[0]->SetCaption(_("* Following player *"));
677+
m_HelpTextList[0]->SetCaption(_("Following Player"));
678678
}
679679
else
680680
{
681-
m_HelpTextList[0]->SetCaption(_("* Free movement *"));
681+
m_HelpTextList[0]->SetCaption(_("Free Movement"));
682682
}
683683
}
684684

0 commit comments

Comments
 (0)