diff --git a/data/galaxy/starSystems.json b/data/galaxy/starSystems.json index 777d6e0..61459c5 100644 --- a/data/galaxy/starSystems.json +++ b/data/galaxy/starSystems.json @@ -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 } diff --git a/src/defs.h b/src/defs.h index d45bce3..8ddb8ff 100644 --- a/src/defs.h +++ b/src/defs.h @@ -150,7 +150,6 @@ enum SIDE_PANDORAN, SIDE_PIRATE, SIDE_CSN, - SIDE_INF, SIDE_UNF, SIDE_MAX }; diff --git a/src/galaxy/galacticMap.c b/src/galaxy/galacticMap.c index b12fca8..8c0f262 100644 --- a/src/galaxy/galacticMap.c +++ b/src/galaxy/galacticMap.c @@ -391,7 +391,7 @@ static void drawGalaxy(void) color = colors.white; break; - case SIDE_INF: + case SIDE_PANDORAN: color = colors.red; break; } diff --git a/src/system/lookup.c b/src/system/lookup.c index 9a9cf39..5e9d3e6 100644 --- a/src/system/lookup.c +++ b/src/system/lookup.c @@ -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);