Skip to content

Commit edc4838

Browse files
committed
fix the terminal
1 parent 9b83d77 commit edc4838

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

masm-tasm/src/dosbox-api/jsdos/utils/terminal.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ export function createTerminal(ci: CommandInterface) {
2828
ci.simulateKeyPress(257)
2929
}
3030
else {
31-
const keys = utils.string2jsdosKey(data);
31+
const keys = utils.string2jsdosKey(data,true,false);
32+
console.log(keys)
3233
keys.forEach(k => ci.simulateKeyPress(...k));
3334
}
3435
}

0 commit comments

Comments
 (0)