summaryrefslogtreecommitdiffstats
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2019-06-07 17:11:11 +0200
committerZach Hilman <zachhilman@gmail.com>2019-06-21 01:22:53 +0200
commited82fa3a91fc84f7f906b898d8f71e15fb42c16e (patch)
tree4cacf3974405b80f64b5108481ea198fd08f4aee /src/core/core.cpp
parentfreezer: Add documentation for methods (diff)
downloadyuzu-ed82fa3a91fc84f7f906b898d8f71e15fb42c16e.tar
yuzu-ed82fa3a91fc84f7f906b898d8f71e15fb42c16e.tar.gz
yuzu-ed82fa3a91fc84f7f906b898d8f71e15fb42c16e.tar.bz2
yuzu-ed82fa3a91fc84f7f906b898d8f71e15fb42c16e.tar.lz
yuzu-ed82fa3a91fc84f7f906b898d8f71e15fb42c16e.tar.xz
yuzu-ed82fa3a91fc84f7f906b898d8f71e15fb42c16e.tar.zst
yuzu-ed82fa3a91fc84f7f906b898d8f71e15fb42c16e.zip
Diffstat (limited to '')
-rw-r--r--src/core/core.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index 94ebe0995..48d953442 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -28,10 +28,10 @@
#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"
+#include "core/tools/freezer.h"
#include "file_sys/cheat_engine.h"
#include "video_core/debug_utils/debug_utils.h"
#include "video_core/renderer_base.h"
@@ -244,7 +244,7 @@ struct System::Impl {
bool is_powered_on = false;
std::unique_ptr<FileSys::CheatEngine> cheat_engine;
- std::unique_ptr<Memory::Freezer> memory_freezer;
+ std::unique_ptr<Tools::Freezer> memory_freezer;
/// Frontend applets
Service::AM::Applets::AppletManager applet_manager;