diff options
Diffstat (limited to 'src/core/core.cpp')
| -rw-r--r-- | src/core/core.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index 32551094d..54fc4170f 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp | |||
| @@ -84,7 +84,7 @@ System::ResultStatus System::SingleStep() { | |||
| 84 | return RunLoop(false); | 84 | return RunLoop(false); |
| 85 | } | 85 | } |
| 86 | 86 | ||
| 87 | System::ResultStatus System::Load(EmuWindow* emu_window, const std::string& filepath) { | 87 | System::ResultStatus System::Load(EmuWindow& emu_window, const std::string& filepath) { |
| 88 | app_loader = Loader::GetLoader(std::make_shared<FileSys::RealVfsFile>(filepath)); | 88 | app_loader = Loader::GetLoader(std::make_shared<FileSys::RealVfsFile>(filepath)); |
| 89 | 89 | ||
| 90 | if (!app_loader) { | 90 | if (!app_loader) { |
| @@ -161,7 +161,7 @@ Cpu& System::CpuCore(size_t core_index) { | |||
| 161 | return *cpu_cores[core_index]; | 161 | return *cpu_cores[core_index]; |
| 162 | } | 162 | } |
| 163 | 163 | ||
| 164 | System::ResultStatus System::Init(EmuWindow* emu_window, u32 system_mode) { | 164 | System::ResultStatus System::Init(EmuWindow& emu_window, u32 system_mode) { |
| 165 | LOG_DEBUG(HW_Memory, "initialized OK"); | 165 | LOG_DEBUG(HW_Memory, "initialized OK"); |
| 166 | 166 | ||
| 167 | CoreTiming::Init(); | 167 | CoreTiming::Init(); |