shithub: orca

Download patch

ref: c4b6b0106b32cf5180c1463a8104dca368caa4b3
parent: 61445124c3de674d36f37614ad80add7fae269e3
author: Devine Lu Linvega <aliceffekt@gmail.com>
date: Sun Dec 2 09:37:31 EST 2018

Fixed issue with delay

--- a/sim.c
+++ b/sim.c
@@ -425,7 +425,7 @@
   STOP_IF_DUAL_INACTIVE;
   Usz offset = index_of(PEEK(0, 1));
   Usz rate = usz_clamp(index_of(PEEK(0, -1)), 2, 16);
-  Glyph g = glyph_of((Tick_number + offset) % rate  == 0 ? '*' : '.');
+  Glyph g = (Tick_number + offset) % rate  == 0 ? '*' : '.';
   POKE(1, 0, g);
 END_PHASE