cargo fmt

This commit is contained in:
2025-06-15 03:10:18 +01:00
parent 17fed069c5
commit a16f57c737
6 changed files with 27 additions and 18 deletions
+9 -8
View File
@@ -1,14 +1,18 @@
use crate::{common::instructions::Register, emulator::{system::model::State, ui::interface::{Component, EmulatorUI}}};
use crate::{
common::instructions::Register,
emulator::{
system::model::State,
ui::interface::{Component, EmulatorUI},
},
};
pub struct StackInspector {
visible: bool
visible: bool,
}
impl StackInspector {
pub fn new() -> Self {
Self {
visible: false
}
Self { visible: false }
}
}
@@ -60,6 +64,3 @@ impl Component for StackInspector {
});
}
}