diff options
| author | 2020-07-27 23:36:08 -0400 | |
|---|---|---|
| committer | 2020-07-27 23:37:49 -0400 | |
| commit | 2258f33ee46a44181256b6058faba96cc3b8dcf8 (patch) | |
| tree | 1ba1387a1888fe76a8cc5b542f30921a65841ea5 /src/core/core.cpp | |
| parent | Merge pull request #4419 from lioncash/initializer (diff) | |
| download | yuzu-2258f33ee46a44181256b6058faba96cc3b8dcf8.tar.gz yuzu-2258f33ee46a44181256b6058faba96cc3b8dcf8.tar.xz yuzu-2258f33ee46a44181256b6058faba96cc3b8dcf8.zip | |
device_memory: Remove unused system member
This isn't used by anything in particular, so it can be removed.
Diffstat (limited to 'src/core/core.cpp')
| -rw-r--r-- | src/core/core.cpp | 2 |
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 { | |||
| 146 | ResultStatus Init(System& system, Frontend::EmuWindow& emu_window) { | 146 | ResultStatus Init(System& system, Frontend::EmuWindow& emu_window) { |
| 147 | LOG_DEBUG(HW_Memory, "initialized OK"); | 147 | LOG_DEBUG(HW_Memory, "initialized OK"); |
| 148 | 148 | ||
| 149 | device_memory = std::make_unique<Core::DeviceMemory>(system); | 149 | device_memory = std::make_unique<Core::DeviceMemory>(); |
| 150 | 150 | ||
| 151 | is_multicore = Settings::values.use_multi_core.GetValue(); | 151 | is_multicore = Settings::values.use_multi_core.GetValue(); |
| 152 | is_async_gpu = is_multicore || Settings::values.use_asynchronous_gpu_emulation.GetValue(); | 152 | is_async_gpu = is_multicore || Settings::values.use_asynchronous_gpu_emulation.GetValue(); |