Remove VtMode::Text

It isn't used anywhere.
This commit is contained in:
bjorn3
2024-01-13 19:36:08 +01:00
parent 5c591cf475
commit b3b1fb1726
2 changed files with 0 additions and 3 deletions
-1
View File
@@ -10,7 +10,6 @@ unsafe fn any_as_u8_slice<T: Sized>(p: &T) -> &[u8] {
#[derive(Debug, Copy, Clone, PartialEq)]
#[repr(usize)]
pub enum VtMode {
Text = 0,
Graphic = 1,
Default = 2,
}
-2
View File
@@ -319,8 +319,6 @@ impl SchemeMut for DisplayScheme {
self.framebuffers[screen_i.0].stride
);
}
VtMode::Text => todo!()
}
}
}