From 355051722b180570441bacc180e75709fa423b1c Mon Sep 17 00:00:00 2001 From: cmaughan Date: Tue, 24 Mar 2020 10:05:34 +0000 Subject: [PATCH] Fix Variable Inputs on the right side of the operator are not marked with PARAM (which denotes a haste input). This fixes the display of the variable operator so that the text on the right is displayed white and not cyan; which matches Orca. --- sim.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim.c b/sim.c index bf8b145..0a74627 100644 --- a/sim.c +++ b/sim.c @@ -671,7 +671,7 @@ END_OPERATOR BEGIN_OPERATOR(variable) LOWERCASE_REQUIRES_BANG; PORT(0, -1, IN | PARAM); - PORT(0, 1, IN | PARAM); + PORT(0, 1, IN); Glyph left = PEEK(0, -1); Glyph right = PEEK(0, 1); if (left != '.') {