Skip to content

Commit 332d68e

Browse files
committed
Clarified text
1 parent d2e6b57 commit 332d68e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/webaudio/audioworklet_emscripten_locks.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ bool process(int numInputs, const AudioSampleFrame* inputs, int numOutputs, Audi
115115
runCalcs((Dummy*) data, PROCESS_CALCS);
116116
} else {
117117
if (whichTest == TEST_DONE_MAIN) {
118-
emscripten_outf("Worklet done after %dms (expect: > 2s)", (int) (emscripten_get_now() - startTime));
118+
emscripten_outf("Worklet done after %dms (expect: approx. 2s)", (int) (emscripten_get_now() - startTime));
119119
// Both loops are finished
120120
whichTest = TEST_DONE;
121121
}
@@ -137,7 +137,7 @@ bool mainLoop(double time, void* data) {
137137
if (howManyMain-- > 0) {
138138
runCalcs((Dummy*) data, MAINLOOP_CALCS);
139139
} else {
140-
emscripten_outf("Main thread done after %dms (expect: > 2s)", (int) (emscripten_get_now() - startTime));
140+
emscripten_outf("Main thread done after %dms (expect: approx. 2s)", (int) (emscripten_get_now() - startTime));
141141
// Done here, so signal to process()
142142
whichTest = TEST_DONE_MAIN;
143143
}

0 commit comments

Comments
 (0)