This commit is contained in:
2025-04-17 01:31:49 +01:00
parent 1c048e6aff
commit 6935b852ce
5 changed files with 19 additions and 18 deletions
+1 -1
View File
@@ -36,6 +36,6 @@ impl Countdown {
self.i_string = self.i.to_string();
if self.i == 0 {
self.reset();
};
}
}
}
+1 -1
View File
@@ -22,7 +22,7 @@ pub enum ElevationExitMethod<'a> {
pub fn is_cursor_visible() -> bool {
let mut ci = CURSORINFO {
cbSize: std::mem::size_of::<CURSORINFO>() as u32,
cbSize: u32::try_from(std::mem::size_of::<CURSORINFO>()).unwrap(),
..Default::default()
};
unsafe {