shithub: orca

Download patch

ref: 8963d7d7959f3c4e55128c44e139e98aea74f5a1
parent: df0e1276ec2ef795f8a072a6f6768cc7ef73647c
author: Devine Lu Linvega <aliceffekt@gmail.com>
date: Mon May 20 14:08:55 EDT 2019

Removed extra check from F

--- a/sim.c
+++ b/sim.c
@@ -480,7 +480,7 @@
   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)