aboutsummaryrefslogtreecommitdiff
path: root/location.h
diff options
context:
space:
mode:
authorFranklin Wei <frankhwei536@gmail.com>2014-06-23 15:08:58 -0400
committerFranklin Wei <frankhwei536@gmail.com>2014-06-23 15:08:58 -0400
commitb4f84e24ff5a33b22fcdeeec2f7180248e535e52 (patch)
treef63caa643dae391b8c6f9359709e0329eda41f52 /location.h
parentfb1871333736e17196ee0bb72a7dc86aabfd55f4 (diff)
downloadwargames-server-b4f84e24ff5a33b22fcdeeec2f7180248e535e52.zip
wargames-server-b4f84e24ff5a33b22fcdeeec2f7180248e535e52.tar.gz
wargames-server-b4f84e24ff5a33b22fcdeeec2f7180248e535e52.tar.bz2
wargames-server-b4f84e24ff5a33b22fcdeeec2f7180248e535e52.tar.xz
Cleaned up code, fixed some bugs
Diffstat (limited to 'location.h')
-rw-r--r--location.h5
1 files changed, 3 insertions, 2 deletions
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 */