reset method

void reset()

Discards any staged baseline and clears the ghost registry. Used on controller swap so state staged against the old controller doesn't leak into the new one.

Implementation

void reset() {
  baselineSlot.reset();
  ghosts.reset();
}