summaryrefslogtreecommitdiffstats
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2019-05-30 14:52:20 +0200
committerZach Hilman <zachhilman@gmail.com>2019-06-21 01:22:04 +0200
commit1b7d619914c8d132dbffb8b6a5bb3a1aab686f9d (patch)
tree2ced924df90e1a8c0cbd41ef251733a84b48301e /src/core/core.cpp
parentMerge pull request #2596 from FernandoS27/revert-2590 (diff)
downloadyuzu-1b7d619914c8d132dbffb8b6a5bb3a1aab686f9d.tar
yuzu-1b7d619914c8d132dbffb8b6a5bb3a1aab686f9d.tar.gz
yuzu-1b7d619914c8d132dbffb8b6a5bb3a1aab686f9d.tar.bz2
yuzu-1b7d619914c8d132dbffb8b6a5bb3a1aab686f9d.tar.lz
yuzu-1b7d619914c8d132dbffb8b6a5bb3a1aab686f9d.tar.xz
yuzu-1b7d619914c8d132dbffb8b6a5bb3a1aab686f9d.tar.zst
yuzu-1b7d619914c8d132dbffb8b6a5bb3a1aab686f9d.zip
Diffstat (limited to '')
-rw-r--r--src/core/core.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index ff0721079..94ebe0995 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -28,6 +28,7 @@
#include "core/hle/service/service.h"
#include "core/hle/service/sm/sm.h"
#include "core/loader/loader.h"
+#include "core/memory/freezer.h"
#include "core/perf_stats.h"
#include "core/settings.h"
#include "core/telemetry_session.h"
@@ -243,6 +244,7 @@ struct System::Impl {
bool is_powered_on = false;
std::unique_ptr<FileSys::CheatEngine> cheat_engine;
+ std::unique_ptr<Memory::Freezer> memory_freezer;
/// Frontend applets
Service::AM::Applets::AppletManager applet_manager;