Tweak the lat/longitude offsets for England and Portugal.
1 files changed, 3 insertions(+), 0 deletions(-)

M src/main/java/com/ajtjp/gearCity/CityInfoFile/City.java
M src/main/java/com/ajtjp/gearCity/CityInfoFile/City.java +3 -0
@@ 67,6 67,9 @@ public class City {
             this.pIC = new PIC(city.getPicture() + ".dds");
         }
         if (city.getCountry().getName().equals("Portugal")) {
+            this.cORDS = new CORDS(city.getLongitude() + 0.15, city.getLatitude() - 0.125);
+        }
+        else if (city.getCountry().getName().equals("United Kingdom")) {
             this.cORDS = new CORDS(city.getLongitude() + 0.1, city.getLatitude() - 0.2);
         }
         else if (city.getCountry().getName().equals("Spain")) {