Skip to content

Commit

Permalink
Remove delete key from printable chars
Browse files Browse the repository at this point in the history
  • Loading branch information
vinc committed Sep 16, 2024
1 parent 9fd2abe commit 99bf1a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sys/vga.rs
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ pub fn set_color(foreground: Color, background: Color) {
// Carriage Return
// Extended ASCII Printable
pub fn is_printable(c: u8) -> bool {
matches!(c, 0x20..=0x7E | 0x08 | 0x0A | 0x0D | 0x7F..=0xFF)
matches!(c, 0x20..=0x7E | 0x08 | 0x0A | 0x0D | 0x80..=0xFF)
}

// TODO: Remove this
Expand Down

0 comments on commit 99bf1a1

Please sign in to comment.