Skip to content

Commit

Permalink
changes suggested
Browse files Browse the repository at this point in the history
  • Loading branch information
khanghugo committed Jul 27, 2024
1 parent 0c041ac commit 53ed37f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/modules/tas_studio/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1656,7 +1656,12 @@ pub unsafe fn maybe_receive_messages_from_remote_server(marker: MainThreadMarker
editor.recompute_extra_camera_frame_data_if_needed();
}
State::PreparingToPlayToEditor(_, _, _) => unreachable!(),
_ => (),
State::PlayingViews { .. } => {
// Do nothing
// While PlayingViews is happening, nothing else happens or will happen.
// Because PlayingViews only starts when all accurate frames are received.
// Meaning there is nothing second game could do anything to affect the state.
}
}
}

Expand Down

0 comments on commit 53ed37f

Please sign in to comment.