Disabled ability to click on help blips - this seem to cause ugly GFX artefacts sometimes, text could not be manually set by players anyway.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@965 4a71c877-e1ca-e34f-864e-861f7616d084
master
Roman C 2007-01-07 19:36:58 +00:00
parent f1ad4d83c9
commit 80a5a97366
1 changed files with 14 additions and 11 deletions

View File

@ -1056,7 +1056,7 @@ void displayProximityMessage(PROXIMITY_DISPLAY *psProxDisp)
FEATURE *psFeature;
VIEWDATA *psViewData;
VIEW_PROXIMITY *psViewProx;
char msgStr[255];
//char msgStr[255];
if (psProxDisp->type == POS_PROXDATA)
{
@ -1066,16 +1066,19 @@ void displayProximityMessage(PROXIMITY_DISPLAY *psProxDisp)
if (psViewData->ppTextMsg)
{
//Beacon stuff: Add player number to the text
if(psViewData->type == VIEW_HELP)
{
//sprintf(msgStr, "%s: %s", getPlayerName(((VIEW_PROXIMITY *)psViewData->pData)->sender), psViewData->ppTextMsg[0]);
sprintf(msgStr, "%s", psViewData->ppTextMsg[0]); //temporary solution
addConsoleMessage( msgStr, DEFAULT_JUSTIFY );
}
else
{
addConsoleMessage( psViewData->ppTextMsg[0], DEFAULT_JUSTIFY );
}
//if(psViewData->type == VIEW_HELP)
//{
// //NOTE: this seems to cause GFX artefacts for some players
// sprintf(msgStr, "%s", psViewData->ppTextMsg[0]); //temporary solution
// addConsoleMessage( msgStr, DEFAULT_JUSTIFY );
//}
//else
//{
if(psViewData->type != VIEW_HELP)
{
addConsoleMessage( psViewData->ppTextMsg[0], DEFAULT_JUSTIFY );
}
//}
}
//play message - if any