File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
examples/examples-stk/streams-stk_myinstrument-audiokit Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ class MyFirstInstrument : public Instrmnt {
24
24
}
25
25
26
26
float tick () {
27
- return echo.tick (wave.tick ())* adsr.tick ();
27
+ return echo.tick (wave.tick ()) * adsr.tick ();
28
28
}
29
29
30
30
protected:
Original file line number Diff line number Diff line change @@ -92,12 +92,12 @@ class StreamCopyT {
92
92
// if not initialized we do nothing
93
93
if (from==nullptr || to==nullptr ) return 0 ;
94
94
95
- // If we try to write to a server we might not have any output destination yet
95
+ // // If we try to write to a server we might not have any output destination yet
96
96
int to_write = to->availableForWrite ();
97
- if (to_write<=0 ){
98
- delay (500 );
99
- return 0 ;
100
- }
97
+ // if (to_write<=0){
98
+ // delay(500);
99
+ // return 0;
100
+ // }
101
101
102
102
103
103
size_t result = 0 ;
You can’t perform that action at this time.
0 commit comments