computerscare-vcv-modules

computerscare modules for VCV Rack
Log | Files | Refs

commit a2a6fc26e42f53aea79e872b226c558eea43bec5
parent 8c651098bddc3269e6472a883c43be32b48cef12
Author: Adam M <[email protected]>
Date:   Sat,  7 Dec 2019 17:29:34 -0600

set JSON to the text field value, not the current formula

Diffstat:
Msrc/ComputerscareLaundrySoup.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/ComputerscareLaundrySoup.cpp b/src/ComputerscareLaundrySoup.cpp @@ -136,7 +136,7 @@ struct ComputerscareLaundrySoup : Module { json_t *sequencesJ = json_array(); json_t *channelCountJ = json_array(); for (int i = 0; i < numFields; i++) { - json_t *sequenceJ = json_string(currentFormula[i].c_str()); + json_t *sequenceJ = json_string(currentTextFieldValue[i].c_str()); json_array_append_new(sequencesJ, sequenceJ); json_t *channelJ = json_integer(channelCountEnum[i]); json_array_append_new(channelCountJ, channelJ);