From c3df7e864a80be9c0c3310650e1c19eac2aee5d8 Mon Sep 17 00:00:00 2001 From: keie Date: Mon, 21 Jan 1985 14:48:16 +0000 Subject: [PATCH] Changed calls to "setrandom" into calls to "setrand" and calls to "randomize" inro calls to "randomi" to avoid problems with routines compiled by C. --- lang/basic/src.old/basic.yacc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/basic/src.old/basic.yacc b/lang/basic/src.old/basic.yacc index 8663a86c..14eb16d6 100644 --- a/lang/basic/src.old/basic.yacc +++ b/lang/basic/src.old/basic.yacc @@ -362,10 +362,10 @@ printlist: expression { printstmt($1); $$=1;} pokestmt: POKESYM expression ',' expression {pokestmt($2,$4);} ; randomizestmt: RANDOMIZESYM - { emcode("cal","$_randomize");} + { emcode("cal","$_randomi");} | RANDOMIZESYM expression { conversion($2,INTTYPE); - emcode("cal","$_setrandom"); + emcode("cal","$_setrand"); emcode("asp",EMINTSIZE);} readstmt: READSYM {setchannel(0);} variable { readelm($3);}