Removed INF. They don't exist after 2616.

This commit is contained in:
Steve 2016-02-24 07:16:23 +00:00
parent e4b2bba230
commit 913184d877
4 changed files with 14 additions and 16 deletions

View File

@ -155,79 +155,79 @@
},
{
"name": "Adetton",
"side" : "SIDE_INF",
"side" : "SIDE_PANDORAN",
"x": 228,
"y": 228
},
{
"name": "Atlante",
"side" : "SIDE_INF",
"side" : "SIDE_PANDORAN",
"x": 212,
"y": 85
},
{
"name": "Carthege",
"side" : "SIDE_INF",
"side" : "SIDE_PANDORAN",
"x": 163,
"y": 122
},
{
"name": "Codexa",
"side" : "SIDE_INF",
"side" : "SIDE_PANDORAN",
"x": 195,
"y": 101
},
{
"name": "Haylahe",
"side" : "SIDE_INF",
"side" : "SIDE_PANDORAN",
"x": 204,
"y": 132
},
{
"name": "Kethlan",
"side" : "SIDE_INF",
"side" : "SIDE_PANDORAN",
"x": 95,
"y": 95
},
{
"name": "Krasst",
"side" : "SIDE_INF",
"side" : "SIDE_PANDORAN",
"x": 135,
"y": 305
},
{
"name": "Mekel",
"side" : "SIDE_INF",
"side" : "SIDE_PANDORAN",
"x": 228,
"y": 113
},
{
"name": "Phylent",
"side" : "SIDE_INF",
"side" : "SIDE_PANDORAN",
"x": 275,
"y": 165
},
{
"name": "Sampi-Persei VII",
"side" : "SIDE_INF",
"side" : "SIDE_PANDORAN",
"x": 342,
"y": 182
},
{
"name": "Tigris",
"side" : "SIDE_INF",
"side" : "SIDE_PANDORAN",
"x": 269,
"y": 274
},
{
"name": "Troy",
"side" : "SIDE_INF",
"side" : "SIDE_PANDORAN",
"x": 107,
"y": 269
},
{
"name": "Pearl",
"side" : "SIDE_INF",
"side" : "SIDE_PANDORAN",
"x": 133,
"y": 215
}

View File

@ -150,7 +150,6 @@ enum
SIDE_PANDORAN,
SIDE_PIRATE,
SIDE_CSN,
SIDE_INF,
SIDE_UNF,
SIDE_MAX
};

View File

@ -391,7 +391,7 @@ static void drawGalaxy(void)
color = colors.white;
break;
case SIDE_INF:
case SIDE_PANDORAN:
color = colors.red;
break;
}

View File

@ -86,7 +86,6 @@ void initLookups(void)
addLookup("SIDE_PANDORAN", SIDE_PANDORAN);
addLookup("SIDE_CSN", SIDE_CSN);
addLookup("SIDE_UNF", SIDE_UNF);
addLookup("SIDE_INF", SIDE_INF);
addLookup("SND_PARTICLE", SND_PARTICLE);
addLookup("SND_PLASMA", SND_PLASMA);