aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--taipan.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/taipan.c b/taipan.c
index b3577ff..04b6896 100644
--- a/taipan.c
+++ b/taipan.c
@@ -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