diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2025-01-12 12:13:56 +0100 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2025-01-12 12:13:56 +0100 |
commit | 29d736aecc5db0deb67053931e5b1cf03a9defc3 (patch) | |
tree | 50caf18887aeda07b24bee5d4143130f8546aff7 /index.htm | |
parent | 464575c72a8a20b5e565f91cebfeb470edc8542e (diff) | |
download | reduced_system_layer-29d736aecc5db0deb67053931e5b1cf03a9defc3.zip |
f32 colors; g_ prefix
Diffstat (limited to 'index.htm')
-rw-r--r-- | index.htm | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -62,7 +62,9 @@ }, } ).then((program) => { - program.exports.js_main(options.processorOptions.href); + program.exports.js_main( + options.processorOptions.href // FIXME + ); this.memory_buffer = program.exports.memory.buffer; this.sound_buffer_address = program.exports.js_sound_buffer(); @@ -497,7 +499,7 @@ sound_node.port.postMessage({ id : "paste", - bytes : new TextEncoder("utf-8").encode(ev.clipboardData.getData("text")), + bytes : new TextEncoder("utf8").encode(ev.clipboardData.getData("text")), mod : paste_mod, key : KEY_PASTE, ch : paste_ch, |