We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66e1a40 commit a71dd4fCopy full SHA for a71dd4f
src/main/java/net/raphimc/noteblocktool/audio/soundsystem/impl/MultithreadedJavaxSoundSystem.java
@@ -102,8 +102,8 @@ public synchronized String getStatusLine() {
102
103
@Override
104
protected int[] render() {
105
- this.soundsToRender.addAll(this.playingSounds);
106
this.syncLock.set(this.playingSounds.size());
+ this.soundsToRender.addAll(this.playingSounds);
107
while (this.syncLock.get() != 0 && !Thread.currentThread().isInterrupted()) {
108
// Wait for all sounds to be rendered and merged
109
}
0 commit comments