Update VGA buffer post for commit fcd849f47

Commit fcd849f471
This commit is contained in:
Philipp Oppermann
2019-06-17 17:30:09 +02:00
parent 361ba0c32b
commit 684e21fcec

View File

@@ -217,7 +217,7 @@ impl Writer {
for byte in s.bytes() {
match byte {
// printable ASCII byte or newline
0x20...0x7e | b'\n' => self.write_byte(byte),
0x20..=0x7e | b'\n' => self.write_byte(byte),
// not part of printable ASCII range
_ => self.write_byte(0xfe),
}