diff options
author | B. Watson <yalhcru@gmail.com> | 2016-01-30 20:34:08 -0500 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2016-01-30 20:34:08 -0500 |
commit | 49512754637aa0bca233b7ec24830aac6a08d94d (patch) | |
tree | f38932a3fb91f19b30a00976dbdf618285fcd9cb | |
parent | 09b25847717073929eb0548ac41d23b6cc224f32 (diff) | |
download | taipan-49512754637aa0bca233b7ec24830aac6a08d94d.tar.gz |
whoops, left TIMEWARP enabled
-rw-r--r-- | taipan.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -30,7 +30,7 @@ /* define this to start the game in the year 1869, with 1000 capacity, 20 guns, and 1 billion cash and bank. */ -#define TIMEWARP +// #define TIMEWARP /* define this to start the game in a 99% damaged ship */ // #define ALMOST_DEAD @@ -1646,11 +1646,11 @@ void aire(void) { big_add(networth, networth, bank); if(big_cmp(networth, big1B) < 0) { - cputs(" M I L L I O N A I R E ! \r\n"); + cputs(" M I L L I O N A I R E ! \r\n"); } else if(big_cmp(networth, big1T) < 0) { - cputs(" B I L L I O N A I R E ! \r\n"); + cputs(" B I L L I O N A I R E ! \r\n"); } else { - cputs(" T R I L L I O N A I R E ! \r\n"); + cputs(" T R I L L I O N A I R E !\r\n"); } } #endif |