MCPcopy Create free account
hub / github.com/RIP-Comm/clementine / CpuHandler

Class CpuHandler

ui/src/cpu_handler.rs:13–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11const SPEED_EPSILON: f32 = 0.01;
12
13pub 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected