(ActionEvent event)
| 199 | } |
| 200 | |
| 201 | @FXML |
| 202 | void pauseClicked(ActionEvent event) { |
| 203 | Platform.runLater(() -> { |
| 204 | Emulator.withComputer(c->{ |
| 205 | if (c.isRunning()) { |
| 206 | c.pause(); |
| 207 | } else { |
| 208 | c.resume(); |
| 209 | } |
| 210 | }); |
| 211 | }); |
| 212 | } |
| 213 | |
| 214 | @FXML |
| 215 | void search(ActionEvent event) { |
nothing calls this directly
no test coverage detected