diff options
| author | Michael M <mchtly@gmail.com> | 2017-07-01 13:17:18 -0700 |
|---|---|---|
| committer | Michael M <mchtly@gmail.com> | 2017-09-13 17:30:18 -0700 |
| commit | d217e797f29b2d727bd7a45dcacd15603b739aa6 (patch) | |
| tree | 571dfd0188557e8b18cb1519a582276eea44a55b /Source/Core/DolphinWX/FrameTools.cpp | |
| parent | 030dc11c6e31125cd03862f86815fe67d978f98d (diff) | |
move Movie::DoFrameStep to Core::DoFrameStep
Diffstat (limited to 'Source/Core/DolphinWX/FrameTools.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/FrameTools.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/FrameTools.cpp b/Source/Core/DolphinWX/FrameTools.cpp index d505ce14d3..89726223dc 100644 --- a/Source/Core/DolphinWX/FrameTools.cpp +++ b/Source/Core/DolphinWX/FrameTools.cpp @@ -446,7 +446,7 @@ void CFrame::OnFrameStep(wxCommandEvent& event) { bool wasPaused = Core::GetState() == Core::State::Paused; - Movie::DoFrameStep(); + Core::DoFrameStep(); bool isPaused = Core::GetState() == Core::State::Paused; if (isPaused && !wasPaused) // don't update on unpause, otherwise the status would be wrong when |
