Browse Source

Removed extra check from F

master
Devine Lu Linvega 6 years ago
parent
commit
8963d7d795
  1. 2
      sim.c

2
sim.c

@ -480,7 +480,7 @@ BEGIN_OPERATOR(if)
PORT(1, 0, OUT);
Glyph g0 = PEEK(0, -1);
Glyph g1 = PEEK(0, 1);
POKE(1, 0, (g0 == g1 && g0 != '.' && g1 != '.') ? '*' : '.');
POKE(1, 0, (g0 == g1 && g0 != '.') ? '*' : '.');
END_OPERATOR
BEGIN_OPERATOR(generator)

Loading…
Cancel
Save