diff options
| author | 2017-10-09 23:56:20 -0400 | |
|---|---|---|
| committer | 2017-10-09 23:56:20 -0400 | |
| commit | b1d5db1cf60344b6b081c9d03cb6ccc3264326cd (patch) | |
| tree | fde377c4ba3c0f92c032e6f5ec8627aae37270ef /src/core/core.h | |
| parent | loader: Various improvements for NSO/NRO loaders. (diff) | |
| parent | Merge pull request #2996 from MerryMage/split-travis (diff) | |
| download | yuzu-b1d5db1cf60344b6b081c9d03cb6ccc3264326cd.tar.gz yuzu-b1d5db1cf60344b6b081c9d03cb6ccc3264326cd.tar.xz yuzu-b1d5db1cf60344b6b081c9d03cb6ccc3264326cd.zip | |
Merge remote-tracking branch 'upstream/master' into nx
# Conflicts:
# src/core/CMakeLists.txt
# src/core/arm/dynarmic/arm_dynarmic.cpp
# src/core/arm/dyncom/arm_dyncom.cpp
# src/core/hle/kernel/process.cpp
# src/core/hle/kernel/thread.cpp
# src/core/hle/kernel/thread.h
# src/core/hle/kernel/vm_manager.cpp
# src/core/loader/3dsx.cpp
# src/core/loader/elf.cpp
# src/core/loader/ncch.cpp
# src/core/memory.cpp
# src/core/memory.h
# src/core/memory_setup.h
Diffstat (limited to 'src/core/core.h')
| -rw-r--r-- | src/core/core.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/core/core.h b/src/core/core.h index 4e3b6b409..9805cc694 100644 --- a/src/core/core.h +++ b/src/core/core.h | |||
| @@ -7,6 +7,7 @@ | |||
| 7 | #include <memory> | 7 | #include <memory> |
| 8 | #include <string> | 8 | #include <string> |
| 9 | #include "common/common_types.h" | 9 | #include "common/common_types.h" |
| 10 | #include "core/loader/loader.h" | ||
| 10 | #include "core/memory.h" | 11 | #include "core/memory.h" |
| 11 | #include "core/perf_stats.h" | 12 | #include "core/perf_stats.h" |
| 12 | #include "core/telemetry_session.h" | 13 | #include "core/telemetry_session.h" |
| @@ -14,10 +15,6 @@ | |||
| 14 | class EmuWindow; | 15 | class EmuWindow; |
| 15 | class ARM_Interface; | 16 | class ARM_Interface; |
| 16 | 17 | ||
| 17 | namespace Loader { | ||
| 18 | class AppLoader; | ||
| 19 | } | ||
| 20 | |||
| 21 | namespace Core { | 18 | namespace Core { |
| 22 | 19 | ||
| 23 | class System { | 20 | class System { |
| @@ -119,6 +116,10 @@ public: | |||
| 119 | return status_details; | 116 | return status_details; |
| 120 | } | 117 | } |
| 121 | 118 | ||
| 119 | Loader::AppLoader& GetAppLoader() const { | ||
| 120 | return *app_loader; | ||
| 121 | } | ||
| 122 | |||
| 122 | private: | 123 | private: |
| 123 | /** | 124 | /** |
| 124 | * Initialize the emulated system. | 125 | * Initialize the emulated system. |