diff options
Diffstat (limited to 'bedrock.js')
-rw-r--r-- | bedrock.js | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -2143,6 +2143,9 @@ function StreamDevice(br) { default: return; } } + this.wake = function() { + return false; + } } @@ -2171,6 +2174,9 @@ function ClipboardDevice(br) { default: return; } } + this.wake = function() { + return false; + } this.readEntry = function(v) { this.readQueue = []; |