Prepare to initialize public repository.
[open-adventure.git] / score.c
diff --git a/score.c b/score.c
index 5caef0d7a994e260a9bc33814d3cb7187aeb9926..c8c1b96315dee2e1443002238c1e8444bb00ea06 100644 (file)
--- a/score.c
+++ b/score.c
@@ -3,14 +3,11 @@
 #include "main.h"
 #include "share.h"
 
-#define TRUE  (0==0)
-#define FALSE (0!=0)
-
 /*
  * SCORING AND WRAP-UP
  */
 
-void score(MODE)long MODE; {
+void score(long MODE) {
        /* <0 if scoring, >0 if quitting, =0 if died or won */
 
 /*  THE PRESENT SCORING ALGORITHM IS AS FOLLOWS:
@@ -115,6 +112,6 @@ L20210: SPEAK(CTEXT[I]);
        SETPRM(1,I,I);
        SPK=263;
 L25000: RSPEAK(SPK);
-       exit(FALSE);
+       exit(0);
 
 }