X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;ds=sidebyside;f=score.c;h=bf47792a5125ab833fdd9deb6c2cf42c00598e9f;hb=fef9657e3e00d952571bf96797ad716d00affeff;hp=cc482ff5d94f4ec0430e433f9754ac7680f8e87d;hpb=f38f286f39fe03bf72656685c1d7315570919baf;p=open-adventure.git diff --git a/score.c b/score.c index cc482ff..bf47792 100644 --- a/score.c +++ b/score.c @@ -96,29 +96,29 @@ void score(long mode) if(mode < 0) { SETPRM(1,score,mxscor); SETPRM(3,game.turns,game.turns); - RSPEAK(259); + RSPEAK(ARB_259); return; } /* that should be good enough. Let's tell him all about it. */ if(score+game.trnluz+1 >= mxscor && game.trnluz != 0) - RSPEAK(242); + RSPEAK(ARB_242); if(score+game.saved+1 >= mxscor && game.saved != 0) - RSPEAK(143); + RSPEAK(ARB_143); SETPRM(1,score,mxscor); SETPRM(3,game.turns,game.turns); - RSPEAK(262); + RSPEAK(ARB_262); for (i=1; i<=CLSSES; i++) { if(CVAL[i] >= score) { newspeak(class_messages[i]); i=CVAL[i]+1-score; SETPRM(1,i,i); - RSPEAK(263); + RSPEAK(ARB_263); exit(0); } } - RSPEAK(265); - RSPEAK(264); + RSPEAK(ARB_265); + RSPEAK(ARB_264); exit(0); }