Skip to content

Commit

Permalink
Report current PS/2 scan code set as 1
Browse files Browse the repository at this point in the history
PS/2 keyboard reported current scan code set as 2 while only scan
code set 1 was emulated.
  • Loading branch information
Bananymous committed Apr 21, 2024
1 parent fd74aed commit 8cb5842
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ps2.js
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ PS2.prototype.port60_write = function(write_byte)
}
else
{
this.kbd_buffer.push(2);
this.kbd_buffer.push(1);
}
}
else if(this.next_read_rate)
Expand Down

0 comments on commit 8cb5842

Please sign in to comment.