Skip to content

Commit

Permalink
Change running/stopped text
Browse files Browse the repository at this point in the history
  • Loading branch information
Kogepan229 committed Dec 19, 2024
1 parent 01367b1 commit ba6ddda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/simulator/views.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ impl Simulator {
});

if self.emulator.is_some() {
ui.label("Emulator is available.");
ui.label("Emulator is running.");
} else {
ui.label("Emulator is None.");
ui.label("Emulator is stopped.");
}
ui.label(format!("Speed: x{}", self.ui_states.speed));

Expand Down

0 comments on commit ba6ddda

Please sign in to comment.