diff options
author | bunnei <bunneidev@gmail.com> | 2017-08-02 01:53:35 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2017-08-04 02:10:37 +0200 |
commit | 9b8e5bea6619606afe10dfc38b1d8f6a47ba8332 (patch) | |
tree | f3de8c8d6e5575d7b39bfd1d1900596339ba5eb5 /src/core/core.h | |
parent | loader: Expose program title. (diff) | |
download | yuzu-9b8e5bea6619606afe10dfc38b1d8f6a47ba8332.tar yuzu-9b8e5bea6619606afe10dfc38b1d8f6a47ba8332.tar.gz yuzu-9b8e5bea6619606afe10dfc38b1d8f6a47ba8332.tar.bz2 yuzu-9b8e5bea6619606afe10dfc38b1d8f6a47ba8332.tar.lz yuzu-9b8e5bea6619606afe10dfc38b1d8f6a47ba8332.tar.xz yuzu-9b8e5bea6619606afe10dfc38b1d8f6a47ba8332.tar.zst yuzu-9b8e5bea6619606afe10dfc38b1d8f6a47ba8332.zip |
Diffstat (limited to '')
-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 @@ #include <memory> #include <string> #include "common/common_types.h" +#include "core/loader/loader.h" #include "core/memory.h" #include "core/perf_stats.h" #include "core/telemetry_session.h" @@ -14,10 +15,6 @@ class EmuWindow; class ARM_Interface; -namespace Loader { -class AppLoader; -} - namespace Core { class System { @@ -119,6 +116,10 @@ public: return status_details; } + Loader::AppLoader& GetAppLoader() const { + return *app_loader; + } + private: /** * Initialize the emulated system. |