Skip to content
Snippets Groups Projects
Commit 85076da0 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Use console.write() when available for outputting spied content

Defeats local auto-screen-pausing

Fixes issue #603 reported by Nelgin
parent c8e52b5f
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #4645 passed
......@@ -46,7 +46,10 @@ function output(str)
else if(my_charset == 'UTF-8')
str = utf8_encode(str);
}
write(str);
if(js.global.console)
console.write(str);
else
write(str);
}
if(argc < 1) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment