Add in-game descriptions for friend-for and player color radar modes (SHIFT+TAB).

NOTE: someone more familiar with gettext might want to add those and the ones from kf_ToggleRadarTerrain() to the .po files.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@4121 4a71c877-e1ca-e34f-864e-861f7616d084
master
Roman C 2008-03-17 18:48:02 +00:00
parent ba225be0d0
commit f3b464678a
1 changed files with 10 additions and 0 deletions

View File

@ -2358,6 +2358,16 @@ void kf_ToggleReopenBuildMenu( void )
void kf_ToggleRadarAllyEnemy(void)
{
bEnemyAllyRadarColor = !bEnemyAllyRadarColor;
if(bEnemyAllyRadarColor)
{
CONPRINTF(ConsoleString, (ConsoleString, "Radar showing friend-foe colors"));
}
else
{
CONPRINTF(ConsoleString, (ConsoleString, "Radar showing player colors"));
}
resetRadarRedraw();
}