aboutsummaryrefslogtreecommitdiff
path: root/games.c
diff options
context:
space:
mode:
authorFranklin Wei <franklin@fwei.tk>2014-06-24 11:06:17 +0000
committerFranklin Wei <franklin@fwei.tk>2014-06-24 11:06:17 +0000
commit119d1caf3f19235649f68accfefebede01e82e83 (patch)
tree623ca9119df15fdc8cb679852184f5c56fe034b5 /games.c
parent45083e66657bed6167e7513d599581b0517bbf81 (diff)
downloadwargames-server-119d1caf3f19235649f68accfefebede01e82e83.zip
wargames-server-119d1caf3f19235649f68accfefebede01e82e83.tar.gz
wargames-server-119d1caf3f19235649f68accfefebede01e82e83.tar.bz2
wargames-server-119d1caf3f19235649f68accfefebede01e82e83.tar.xz
Added some population data to GTNW
Diffstat (limited to 'games.c')
-rw-r--r--games.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/games.c b/games.c
index 41973e6..94d1581 100644
--- a/games.c
+++ b/games.c
@@ -92,11 +92,11 @@ void global_thermonuclear_war(void)
{
map[targets[i].y][targets[i].x]='X';
}
- usleep(SLEEP_TIME*100);
clear();
for(int i=0;i<sizeof(map)/sizeof(char*);++i)
{
print_string(map[i]);
print_string("\n");
}
+ unsigned int us_pop=200000000, ussr_pop=250000000;
}