| 11 | const SPEED_EPSILON: f32 = 0.01; |
| 12 | |
| 13 | pub struct CpuHandler { |
| 14 | emu_handle: Arc<Mutex<EmuHandle>>, |
| 15 | b_address: UpperHexString, |
| 16 | breakpoint_combo: BreakpointKind, |
| 17 | cycle_to_skip_custom_value: u32, |
| 18 | /// Local copy of speed for the slider. |
| 19 | speed: f32, |
| 20 | /// Shared hold-to-fast-forward key, also read by the input handler. |
| 21 | fast_forward_key: Arc<Mutex<Key>>, |
| 22 | /// True while waiting to capture the next key press as the fast-forward key. |
| 23 | rebinding_fast_forward: bool, |
| 24 | } |
| 25 |
nothing calls this directly
no outgoing calls
no test coverage detected