summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorChris Burgener <christhecoolist@gmail.com>2017-02-17 23:23:42 -0500
committerChris Burgener <christhecoolist@gmail.com>2017-02-17 23:23:42 -0500
commit8bfe2671b2f2038f562253c9d689cbbbf5f67d89 (patch)
tree711c1ac35dc3d30453e44f76e3c82b4ff0e3363b /Source/Core
parent82734fffaaa393f8ebd18eb218c2f43a9dc8ec8a (diff)
Remove IsReadOnly check when stop recording
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinWX/FrameTools.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/Core/DolphinWX/FrameTools.cpp b/Source/Core/DolphinWX/FrameTools.cpp
index 5c435da2f3..e1a9271744 100644
--- a/Source/Core/DolphinWX/FrameTools.cpp
+++ b/Source/Core/DolphinWX/FrameTools.cpp
@@ -508,13 +508,6 @@ void CFrame::OnStopRecording(wxCommandEvent& WXUNUSED(event))
CPU::EnableStepping(false);
}
- if (!Movie::IsReadOnly())
- {
- // let's make the read-only flag consistent at the start of a movie.
- Movie::SetReadOnly(true);
- GetMenuBar()->FindItem(IDM_RECORD_READ_ONLY)->Check();
- }
-
Movie::EndPlayInput(false);
GetMenuBar()->FindItem(IDM_STOP_RECORD)->Enable(Movie::IsMovieActive());