ref: b83ade4c48b38d9da0062d3822c817b4b89ad1bf
parent: 996652ee82406485cfef4b5dbaeb2743c4a00db7
author: Nicola Pisanti <nicola@npisanti.com>
date: Sat Nov 30 16:05:01 EST 2019
reverts F to classic behavior to match orcaJS 158
--- a/sim.c
+++ b/sim.c
@@ -482,7 +482,7 @@
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)