mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Don't allow starting recording in states that will cause a crash or other problem.
This commit is contained in:
@ -747,6 +747,9 @@ void CFrame::OnChangeDisc(wxCommandEvent& WXUNUSED (event))
|
||||
|
||||
void CFrame::OnRecord(wxCommandEvent& WXUNUSED (event))
|
||||
{
|
||||
if ((!Core::IsRunningAndStarted() && Core::IsRunning()) || Movie::IsRecordingInput() || Movie::IsPlayingInput())
|
||||
return;
|
||||
|
||||
int controllers = 0;
|
||||
|
||||
if (Movie::IsReadOnly())
|
||||
|
Reference in New Issue
Block a user