summaryrefslogtreecommitdiffstats
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-07-28 05:36:08 +0200
committerLioncash <mathew1800@gmail.com>2020-07-28 05:37:49 +0200
commit2258f33ee46a44181256b6058faba96cc3b8dcf8 (patch)
tree1ba1387a1888fe76a8cc5b542f30921a65841ea5 /src/core/core.cpp
parentMerge pull request #4419 from lioncash/initializer (diff)
downloadyuzu-2258f33ee46a44181256b6058faba96cc3b8dcf8.tar
yuzu-2258f33ee46a44181256b6058faba96cc3b8dcf8.tar.gz
yuzu-2258f33ee46a44181256b6058faba96cc3b8dcf8.tar.bz2
yuzu-2258f33ee46a44181256b6058faba96cc3b8dcf8.tar.lz
yuzu-2258f33ee46a44181256b6058faba96cc3b8dcf8.tar.xz
yuzu-2258f33ee46a44181256b6058faba96cc3b8dcf8.tar.zst
yuzu-2258f33ee46a44181256b6058faba96cc3b8dcf8.zip
Diffstat (limited to '')
-rw-r--r--src/core/core.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index e598c0e2b..42277e2cd 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -146,7 +146,7 @@ struct System::Impl {
ResultStatus Init(System& system, Frontend::EmuWindow& emu_window) {
LOG_DEBUG(HW_Memory, "initialized OK");
- device_memory = std::make_unique<Core::DeviceMemory>(system);
+ device_memory = std::make_unique<Core::DeviceMemory>();
is_multicore = Settings::values.use_multi_core.GetValue();
is_async_gpu = is_multicore || Settings::values.use_asynchronous_gpu_emulation.GetValue();