Browse Source

SC: check client condition in return of process

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

+ 1
- 1
src/SuperColliderEngine.cpp View File

@@ -85,7 +85,7 @@ public:
return 1;

_client->evaluateProcessBlock(getProcessBlock());
return 0;
return clientHasError() ? 1 : 0;
}

private:


Loading…
Cancel
Save