mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
Use a byte char instead of casting
This commit is contained in:
@@ -91,7 +91,7 @@ impl Writer {
|
|||||||
|
|
||||||
fn clear_row(&mut self, row: usize) {
|
fn clear_row(&mut self, row: usize) {
|
||||||
let blank = ScreenChar {
|
let blank = ScreenChar {
|
||||||
ascii_character: ' ' as u8,
|
ascii_character: b' ',
|
||||||
color_code: self.color_code,
|
color_code: self.color_code,
|
||||||
};
|
};
|
||||||
self.buffer().chars[row] = [blank; BUFFER_WIDTH];
|
self.buffer().chars[row] = [blank; BUFFER_WIDTH];
|
||||||
|
|||||||
Reference in New Issue
Block a user