diff options
| author | Franklin Wei <frankhwei536@gmail.com> | 2014-06-23 15:08:58 -0400 |
|---|---|---|
| committer | Franklin Wei <frankhwei536@gmail.com> | 2014-06-23 15:08:58 -0400 |
| commit | b4f84e24ff5a33b22fcdeeec2f7180248e535e52 (patch) | |
| tree | f63caa643dae391b8c6f9359709e0329eda41f52 /location.h | |
| parent | fb1871333736e17196ee0bb72a7dc86aabfd55f4 (diff) | |
| download | wargames-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.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 */ |