From b83ade4c48b38d9da0062d3822c817b4b89ad1bf Mon Sep 17 00:00:00 2001 From: Nicola Pisanti Date: Sat, 30 Nov 2019 21:05:01 +0100 Subject: [PATCH] reverts F to classic behavior to match orcaJS 158 --- sim.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim.c b/sim.c index 8b25518..da820e6 100644 --- a/sim.c +++ b/sim.c @@ -482,7 +482,7 @@ BEGIN_OPERATOR(if) PORT(1, 0, OUT); Glyph g0 = PEEK(0, -1); Glyph g1 = PEEK(0, 1); - POKE(1, 0, (g0 == g1 && g0 != '.') ? '*' : '.'); + POKE(1, 0, g0 == g1 ? '*' : '.'); END_OPERATOR BEGIN_OPERATOR(generator)