From b4f84e24ff5a33b22fcdeeec2f7180248e535e52 Mon Sep 17 00:00:00 2001 From: Franklin Wei Date: Mon, 23 Jun 2014 15:08:58 -0400 Subject: Cleaned up code, fixed some bugs --- location.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'location.h') diff --git a/location.h b/location.h index 6fd05f2..b88c026 100644 --- a/location.h +++ b/location.h @@ -1,7 +1,8 @@ /* provide the GTNW with some geographical data to draw the missiles */ struct location_t { const char* name; - int x, y; /* x,y-coords on the map */ + int x; + int y; /* x,y-coords on the map */ }; struct location_t world[]={ /* US cities */ @@ -13,7 +14,7 @@ struct location_t world[]={ {"washington dc", 33, 6}, {"winston-salem", 30, 7}, {"san francisco", 1, 6}, - {"chicago", 26, 4}, + {"chicago", 24, 4}, /* Soviet cities */ /* NOTE: These are not neccessarily correct. I simply eyed them relative to Murmansk */ -- cgit v1.1