Browse Source

SC: make num rows available during initial script load

tags/v1.3.0
Brian Heim 5 years ago
parent
commit
9c916b470c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/SuperColliderEngine.cpp

+ 1
- 1
src/SuperColliderEngine.cpp View File

@@ -81,8 +81,8 @@ public:
if (!_clientThread.joinable()) {
_clientThread = std::thread([this, script]() {
_client.reset(new SC_VcvPrototypeClient(this));
_client->interpret(script.c_str());
_client->setNumRows();
_client->interpret(script.c_str());
setFrameDivider(_client->getFrameDivider());
setBufferSize(_client->getBufferSize());
finishClientLoading();


Loading…
Cancel
Save