projects
/
onyx-live.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
95a6cce
)
removed debugging console logs
author
Brendan Hansen
<brendan.f.hansen@gmail.com>
Wed, 1 Sep 2021 01:45:13 +0000
(20:45 -0500)
committer
Brendan Hansen
<brendan.f.hansen@gmail.com>
Wed, 1 Sep 2021 01:45:13 +0000
(20:45 -0500)
static/src/worker.js
patch
|
blob
|
history
diff --git
a/static/src/worker.js
b/static/src/worker.js
index 453e9082da9fc1361de3062773b0a349a2343828..e9b3da661c166ec892564e641f26e7466d992a1e 100644
(file)
--- a/
static/src/worker.js
+++ b/
static/src/worker.js
@@
-21,11
+21,9
@@
let import_obj = {
read_line(msgptr, msglen) { // Returns actual length
let data = new Uint8Array(wasm_memory.buffer, msgptr, msglen);
let input_array = new Uint8Array(input_shared_buffer);
- console.log(Atomics.load(input_array, 0), " == 1");
let i;
for (i=0; input_array[i + 1] != 0 && i<msglen; i++) {
- console.log(input_array[i + 1]);
data[i] = input_array[i + 1];
}