summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-07-28 13:03:30 -0700
committerGitHub <noreply@github.com>2020-07-28 13:03:30 -0700
commitb205b12e75961d70b8c92dff560cf6e6f9f869a7 (patch)
tree6feaf77a2213ab7e74bfd376f15921933825b8c4 /src/core/core.cpp
parent33d789524e221757806af192c6679fb62c79dc23 (diff)
parent2258f33ee46a44181256b6058faba96cc3b8dcf8 (diff)
Merge pull request #4442 from lioncash/devicemem
device_memory: Remove unused system member
Diffstat (limited to 'src/core/core.cpp')
-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();