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

View File

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

View File

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

View File

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