We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b83d77 commit edc4838Copy full SHA for edc4838
masm-tasm/src/dosbox-api/jsdos/utils/terminal.ts
@@ -28,7 +28,8 @@ export function createTerminal(ci: CommandInterface) {
28
ci.simulateKeyPress(257)
29
}
30
else {
31
- const keys = utils.string2jsdosKey(data);
+ const keys = utils.string2jsdosKey(data,true,false);
32
+ console.log(keys)
33
keys.forEach(k => ci.simulateKeyPress(...k));
34
35
0 commit comments