This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
VCV-Prototype
mirror of
https://github.com/VCVRack/VCV-Prototype.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
3
Wiki
Activity
Browse Source
SC: check client condition in return of process
tags/v1.3.0
Brian Heim
5 years ago
parent
e930fcd561
commit
d1a596d040
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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:
Write
Preview
Loading…
Cancel
Save