diff --git a/src/writers/graphics_320x240x256.rs b/src/writers/graphics_320x240x256.rs index ae89116..04b1fe7 100644 --- a/src/writers/graphics_320x240x256.rs +++ b/src/writers/graphics_320x240x256.rs @@ -22,6 +22,11 @@ impl Screen for Graphics320x240x256 { impl GraphicsWriter for Graphics320x240x256 { fn clear_screen(&self, color: u8) { + { + let mut vga = VGA.lock(); + vga.sequencer_registers + .set_plane_mask(PlaneMask::ALL_PLANES); + } unsafe { self.get_frame_buffer().write_bytes(color, Self::SIZE); }