summaryrefslogtreecommitdiffstats
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-02 02:59:42 +0200
committerLioncash <mathew1800@gmail.com>2018-08-02 03:40:30 +0200
commit0f2ac928f291101bd74aac661cff7d14dfa8c984 (patch)
tree39d1ba26d25bd06874b58990c5deb4d1f4ed252d /src/core/core.cpp
parentMerge pull request #885 from greggameplayer/R32-Float (diff)
downloadyuzu-0f2ac928f291101bd74aac661cff7d14dfa8c984.tar
yuzu-0f2ac928f291101bd74aac661cff7d14dfa8c984.tar.gz
yuzu-0f2ac928f291101bd74aac661cff7d14dfa8c984.tar.bz2
yuzu-0f2ac928f291101bd74aac661cff7d14dfa8c984.tar.lz
yuzu-0f2ac928f291101bd74aac661cff7d14dfa8c984.tar.xz
yuzu-0f2ac928f291101bd74aac661cff7d14dfa8c984.tar.zst
yuzu-0f2ac928f291101bd74aac661cff7d14dfa8c984.zip
Diffstat (limited to '')
-rw-r--r--src/core/core.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index b7f4b4532..be8cf9c2b 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -86,7 +86,7 @@ System::ResultStatus System::SingleStep() {
return RunLoop(false);
}
-System::ResultStatus System::Load(EmuWindow* emu_window, const std::string& filepath) {
+System::ResultStatus System::Load(EmuWindow& emu_window, const std::string& filepath) {
app_loader = Loader::GetLoader(std::make_shared<FileSys::RealVfsFile>(filepath));
if (!app_loader) {
@@ -163,7 +163,7 @@ Cpu& System::CpuCore(size_t core_index) {
return *cpu_cores[core_index];
}
-System::ResultStatus System::Init(EmuWindow* emu_window, u32 system_mode) {
+System::ResultStatus System::Init(EmuWindow& emu_window, u32 system_mode) {
LOG_DEBUG(HW_Memory, "initialized OK");
CoreTiming::Init();