summaryrefslogtreecommitdiffstats
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-06-28 20:03:38 +0200
committerGitHub <noreply@github.com>2019-06-28 20:03:38 +0200
commitbb4a1e059c269c95ec9f85f5c2149c7cd1c96f02 (patch)
treed5feb91cf0b4020881e68f9bc35db43fc5c63da5 /src/core/core.cpp
parentMerge pull request #2548 from DarkLordZach/applet-shopn (diff)
parentfreezer: Update documentation (diff)
downloadyuzu-bb4a1e059c269c95ec9f85f5c2149c7cd1c96f02.tar
yuzu-bb4a1e059c269c95ec9f85f5c2149c7cd1c96f02.tar.gz
yuzu-bb4a1e059c269c95ec9f85f5c2149c7cd1c96f02.tar.bz2
yuzu-bb4a1e059c269c95ec9f85f5c2149c7cd1c96f02.tar.lz
yuzu-bb4a1e059c269c95ec9f85f5c2149c7cd1c96f02.tar.xz
yuzu-bb4a1e059c269c95ec9f85f5c2149c7cd1c96f02.tar.zst
yuzu-bb4a1e059c269c95ec9f85f5c2149c7cd1c96f02.zip
Diffstat (limited to 'src/core/core.cpp')
-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 df26eb109..262411db8 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -33,6 +33,7 @@
#include "core/reporter.h"
#include "core/settings.h"
#include "core/telemetry_session.h"
+#include "core/tools/freezer.h"
#include "file_sys/cheat_engine.h"
#include "file_sys/patch_manager.h"
#include "video_core/debug_utils/debug_utils.h"
@@ -300,6 +301,7 @@ struct System::Impl {
bool is_powered_on = false;
std::unique_ptr<FileSys::CheatEngine> cheat_engine;
+ std::unique_ptr<Tools::Freezer> memory_freezer;
/// Frontend applets
Service::AM::Applets::AppletManager applet_manager;