diff options
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r-- | src/core/core.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index 14d6c8c27..1d557fb43 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -136,7 +136,8 @@ struct System::Impl { } void Initialize(System& system) { - device_memory = std::make_unique<Core::DeviceMemory>(); + const bool direct_mapped_address = Settings::IsNceEnabled(); + device_memory = std::make_unique<Core::DeviceMemory>(direct_mapped_address); is_multicore = Settings::values.use_multi_core.GetValue(); extended_memory_layout = |