We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92ebd32 commit e3fff18Copy full SHA for e3fff18
samples/distro-examples/games/sokoban.bas
@@ -514,7 +514,7 @@ sub play_game(byref game)
514
515
game.game_over = false
516
while game.game_over = false
517
- pause true: k = inkey
+ k = inkey(1)
518
if len(k) = 2 then
519
ch = asc(right(k,1))
520
select case ch
src/common/proc.c
@@ -511,14 +511,6 @@ var_int_t par_getval(var_int_t def) {
511
} else {
512
var_t var;
513
switch (code_peek()) {
- case kwTYPE_INT:
- code_skipnext();
- result = code_getint();
- break;
- case kwTYPE_NUM:
- result = code_getreal();
521
522
case kwTYPE_LINE:
523
case kwTYPE_EOC:
524
case kwTYPE_SEP:
0 commit comments