summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2019-06-28 14:03:38 -0400
committerGravatar GitHub2019-06-28 14:03:38 -0400
commitbb4a1e059c269c95ec9f85f5c2149c7cd1c96f02 (patch)
treed5feb91cf0b4020881e68f9bc35db43fc5c63da5 /src/core/core.cpp
parentMerge pull request #2548 from DarkLordZach/applet-shopn (diff)
parentfreezer: Update documentation (diff)
downloadyuzu-bb4a1e059c269c95ec9f85f5c2149c7cd1c96f02.tar.gz
yuzu-bb4a1e059c269c95ec9f85f5c2149c7cd1c96f02.tar.xz
yuzu-bb4a1e059c269c95ec9f85f5c2149c7cd1c96f02.zip
Merge pull request #2533 from DarkLordZach/memory-frozen
memory: Add class to manage and enforce memory freezing
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 @@
33#include "core/reporter.h" 33#include "core/reporter.h"
34#include "core/settings.h" 34#include "core/settings.h"
35#include "core/telemetry_session.h" 35#include "core/telemetry_session.h"
36#include "core/tools/freezer.h"
36#include "file_sys/cheat_engine.h" 37#include "file_sys/cheat_engine.h"
37#include "file_sys/patch_manager.h" 38#include "file_sys/patch_manager.h"
38#include "video_core/debug_utils/debug_utils.h" 39#include "video_core/debug_utils/debug_utils.h"
@@ -300,6 +301,7 @@ struct System::Impl {
300 bool is_powered_on = false; 301 bool is_powered_on = false;
301 302
302 std::unique_ptr<FileSys::CheatEngine> cheat_engine; 303 std::unique_ptr<FileSys::CheatEngine> cheat_engine;
304 std::unique_ptr<Tools::Freezer> memory_freezer;
303 305
304 /// Frontend applets 306 /// Frontend applets
305 Service::AM::Applets::AppletManager applet_manager; 307 Service::AM::Applets::AppletManager applet_manager;