Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions crates/rustynes-frontend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,10 @@ workspace = true

[dependencies]
rustynes-gamedb = { path = "../rustynes-gamedb" }
# v2.3.6 — the deterministic re-simulation probe engine, consumed by the Latency
# Oracle panel. Core-only dependency, so it adds nothing to the frontend's build
# graph beyond what `rustynes-core` already pulls in.
rustynes-probe = { path = "../rustynes-probe" }
# v1.1.0 beta.2 (Workstream C) — `debug-hooks` enables the core's run-loop
# breakpoint/trace/event hooks for the debugger. The hooks are determinism-
# neutral no-ops until armed, so the headless test/bench builds (which depend on
Expand Down
12 changes: 12 additions & 0 deletions crates/rustynes-frontend/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1393,6 +1393,10 @@ impl App {
// v1.6.0 "Studio" A2 — a TAStudio session anchors on the closed ROM; end it.
if let Some(d) = self.debugger.as_mut() {
d.clear_tas_editor();
// v2.3.6 — a Latency Oracle report is bound to the ROM it was
// measured on. Left standing it describes a cartridge that is no
// longer loaded, with its Apply button still live. (PR #385 review.)
d.clear_latency_report();
}
// Stop the dedicated emulation thread from producing frames.
#[cfg(all(not(target_arch = "wasm32"), feature = "emu-thread"))]
Expand Down Expand Up @@ -1700,6 +1704,10 @@ impl App {
// replay inputs/branches against a different `Nes`.
if let Some(d) = self.debugger.as_mut() {
d.clear_tas_editor();
// v2.3.6 — a Latency Oracle report is bound to the ROM it was
// measured on. Left standing it describes a cartridge that is no
// longer loaded, with its Apply button still live. (PR #385 review.)
d.clear_latency_report();
}
// v2.8.0 Phase 5 increment 3 — a reload keeps the pacing regime but
// may change the region (NTSC<->PAL frame duration); refresh the
Expand Down Expand Up @@ -8579,6 +8587,10 @@ impl App {
// session (it anchored on the previous `Nes`).
if let Some(d) = self.debugger.as_mut() {
d.clear_tas_editor();
// v2.3.6 — a Latency Oracle report is bound to the ROM it was
// measured on. Left standing it describes a cartridge that is no
// longer loaded, with its Apply button still live. (PR #385 review.)
d.clear_latency_report();
}
// v2.8.0 Phase 5 increment 3 — let the (idle) emulation thread start
// producing now that the core holds a ROM. Set AFTER `nes` is in
Expand Down
Loading