Display rebels as red on radar.

This commit is contained in:
Steve 2015-11-29 12:56:00 +00:00
parent 76eb50d92c
commit a4dc4f3e05
2 changed files with 2 additions and 0 deletions

View File

@ -62,6 +62,7 @@ void drawRadar(void)
case SIDE_PIRATE:
case SIDE_PANDORAN:
case SIDE_REBEL:
SDL_SetRenderDrawColor(app.renderer, 255, 0, 0, 255);
break;

View File

@ -68,6 +68,7 @@ void initLookups(void)
addLookup("SIDE_ALLIES", SIDE_ALLIES);
addLookup("SIDE_PIRATE", SIDE_PIRATE);
addLookup("SIDE_REBEL", SIDE_REBEL);
addLookup("SIDE_PANDORAN", SIDE_PANDORAN);
addLookup("SIDE_CSN", SIDE_CSN);
addLookup("SIDE_UNF", SIDE_UNF);