From e272a34dfe02d6f0e3dc0a5e0a039b21ef3cd611 Mon Sep 17 00:00:00 2001 From: Mike Lynch Date: Sat, 2 Apr 2022 15:09:03 +1100 Subject: [PATCH] Used a Dictionary instead of an Environment to store the controls --- classes/TouchOSC.sc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/TouchOSC.sc b/classes/TouchOSC.sc index 5a747b3..74be58d 100644 --- a/classes/TouchOSC.sc +++ b/classes/TouchOSC.sc @@ -10,7 +10,7 @@ TouchOSC { init { | ip, port | net = NetAddr(ip, port); - controls = (); + controls = Dictionary(); } send { | url ... oargs |