Linux: Fixed some warning in ai_cmds.cpp

This commit is contained in:
Walter Julius Hennecke 2012-12-30 21:19:42 +01:00
parent f7cafc6a2d
commit cb603a09c9
1 changed files with 5 additions and 5 deletions

View File

@ -303,7 +303,7 @@ int BotGetPatrolWaypoints(bot_state_t *bs, bot_match_t *match) {
// //
while(1) { while(1) {
if (!gi.BotFindMatch(keyarea, &keyareamatch, MTCONTEXT_PATROLKEYAREA)) { if (!gi.BotFindMatch(keyarea, &keyareamatch, MTCONTEXT_PATROLKEYAREA)) {
gi.EA_SayTeam(bs->client, "what do you say?"); gi.EA_SayTeam(bs->client, (char*)"what do you say?");
BotFreeWaypoints(newpatrolpoints); BotFreeWaypoints(newpatrolpoints);
bs->patrolpoints = NULL; bs->patrolpoints = NULL;
return qfalse; return qfalse;
@ -349,7 +349,7 @@ int BotGetPatrolWaypoints(bot_state_t *bs, bot_match_t *match) {
} }
// //
if (!newpatrolpoints || !newpatrolpoints->next) { if (!newpatrolpoints || !newpatrolpoints->next) {
gi.EA_SayTeam(bs->client, "I need more key points to patrol\n"); gi.EA_SayTeam(bs->client, (char*)"I need more key points to patrol\n");
BotFreeWaypoints(newpatrolpoints); BotFreeWaypoints(newpatrolpoints);
newpatrolpoints = NULL; newpatrolpoints = NULL;
return qfalse; return qfalse;
@ -1346,7 +1346,7 @@ void BotMatch_WhoIsTeamLeader(bot_state_t *bs, bot_match_t *match) {
ClientName(bs->client, netname, sizeof(netname)); ClientName(bs->client, netname, sizeof(netname));
//if this bot IS the team leader //if this bot IS the team leader
if (!Q_stricmp(netname, bs->teamleader)) { if (!Q_stricmp(netname, bs->teamleader)) {
gi.EA_SayTeam(bs->client, "I'm the team leader\n"); gi.EA_SayTeam(bs->client, (char*)"I'm the team leader\n");
} }
} }
@ -1885,12 +1885,12 @@ int BotMatchMessage(bot_state_t *bs, char *message) {
} }
case MSG_CREATENEWFORMATION: //start the creation of a new formation case MSG_CREATENEWFORMATION: //start the creation of a new formation
{ {
gi.EA_SayTeam(bs->client, "the part of my brain to create formations has been damaged"); gi.EA_SayTeam(bs->client, (char*)"the part of my brain to create formations has been damaged");
break; break;
} }
case MSG_FORMATIONPOSITION: //tell someone his/her position in the formation case MSG_FORMATIONPOSITION: //tell someone his/her position in the formation
{ {
gi.EA_SayTeam(bs->client, "the part of my brain to create formations has been damaged"); gi.EA_SayTeam(bs->client, (char*)"the part of my brain to create formations has been damaged");
break; break;
} }
case MSG_FORMATIONSPACE: //set the formation space case MSG_FORMATIONSPACE: //set the formation space