mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
HW/ProcessorInterface: Refactor to class, move to Core::System.
This commit is contained in:
parent
908cec04cb
commit
74e1577a2c
26 changed files with 200 additions and 144 deletions
|
@ -61,6 +61,7 @@
|
|||
#include "Core/NetPlayProto.h"
|
||||
#include "Core/NetPlayServer.h"
|
||||
#include "Core/State.h"
|
||||
#include "Core/System.h"
|
||||
#include "Core/WiiUtils.h"
|
||||
|
||||
#include "DiscIO/DirectoryBlob.h"
|
||||
|
@ -942,7 +943,8 @@ void MainWindow::Reset()
|
|||
{
|
||||
if (Movie::IsRecordingInput())
|
||||
Movie::SetReset(true);
|
||||
ProcessorInterface::ResetButton_Tap();
|
||||
auto& system = Core::System::GetInstance();
|
||||
system.GetProcessorInterface().ResetButton_Tap();
|
||||
}
|
||||
|
||||
void MainWindow::FrameAdvance()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue