Skip to content

Commit

Permalink
fix: OSC connection buffer interval lowered to 0.5ms
Browse files Browse the repository at this point in the history
  • Loading branch information
olzzon committed Jul 26, 2021
1 parent 0e4607b commit 9302cf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/utils/mixerConnections/OscMixerConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ export class OscMixerConnection {
if (this.commandBuffer.length > 0) {
this.oscConnection.send(this.commandBuffer.shift())
}
}, 2)
}, 0.5)
}

initialCommands() {
Expand Down

0 comments on commit 9302cf3

Please sign in to comment.