diff options
| author | 2019-06-07 11:11:11 -0400 | |
|---|---|---|
| committer | 2019-06-20 19:22:53 -0400 | |
| commit | ed82fa3a91fc84f7f906b898d8f71e15fb42c16e (patch) | |
| tree | 4cacf3974405b80f64b5108481ea198fd08f4aee /src/core/core.cpp | |
| parent | freezer: Add documentation for methods (diff) | |
| download | yuzu-ed82fa3a91fc84f7f906b898d8f71e15fb42c16e.tar.gz yuzu-ed82fa3a91fc84f7f906b898d8f71e15fb42c16e.tar.xz yuzu-ed82fa3a91fc84f7f906b898d8f71e15fb42c16e.zip | |
core: Move Freezer class to tools namespace
Diffstat (limited to 'src/core/core.cpp')
| -rw-r--r-- | src/core/core.cpp | 4 |
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 @@ | |||
| 28 | #include "core/hle/service/service.h" | 28 | #include "core/hle/service/service.h" |
| 29 | #include "core/hle/service/sm/sm.h" | 29 | #include "core/hle/service/sm/sm.h" |
| 30 | #include "core/loader/loader.h" | 30 | #include "core/loader/loader.h" |
| 31 | #include "core/memory/freezer.h" | ||
| 32 | #include "core/perf_stats.h" | 31 | #include "core/perf_stats.h" |
| 33 | #include "core/settings.h" | 32 | #include "core/settings.h" |
| 34 | #include "core/telemetry_session.h" | 33 | #include "core/telemetry_session.h" |
| 34 | #include "core/tools/freezer.h" | ||
| 35 | #include "file_sys/cheat_engine.h" | 35 | #include "file_sys/cheat_engine.h" |
| 36 | #include "video_core/debug_utils/debug_utils.h" | 36 | #include "video_core/debug_utils/debug_utils.h" |
| 37 | #include "video_core/renderer_base.h" | 37 | #include "video_core/renderer_base.h" |
| @@ -244,7 +244,7 @@ struct System::Impl { | |||
| 244 | bool is_powered_on = false; | 244 | bool is_powered_on = false; |
| 245 | 245 | ||
| 246 | std::unique_ptr<FileSys::CheatEngine> cheat_engine; | 246 | std::unique_ptr<FileSys::CheatEngine> cheat_engine; |
| 247 | std::unique_ptr<Memory::Freezer> memory_freezer; | 247 | std::unique_ptr<Tools::Freezer> memory_freezer; |
| 248 | 248 | ||
| 249 | /// Frontend applets | 249 | /// Frontend applets |
| 250 | Service::AM::Applets::AppletManager applet_manager; | 250 | Service::AM::Applets::AppletManager applet_manager; |