From 770f321ea8ca4e14151fdedd8aa5886ee0c773ff 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 8663a86c6..14eb16d62 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);} -- 2.34.1