previous method

void previous()

Returns to the previous frame, if any. Snaps (non-consecutive version).

Implementation

void previous() {
  if (state > 0) state = state - 1;
}