cargo fmt
This commit is contained in:
@@ -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 {
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user