summaryrefslogtreecommitdiff
path: root/src/core/loader/xci.h
diff options
context:
space:
mode:
authorGravatar bunnei2020-11-24 15:27:22 -0800
committerGravatar GitHub2020-11-24 15:27:22 -0800
commit0832da3e4054d0b47c39e95553b5f3be5848eae9 (patch)
tree1e7688670225c60bbcbc2827cf427a67e1686404 /src/core/loader/xci.h
parenthle: services: Fix a crash with improper NVFlinger lifetime management. (#4977) (diff)
parentfrontend: yuzu (qt): Register a callback for ExecuteProgram. (diff)
downloadyuzu-0832da3e4054d0b47c39e95553b5f3be5848eae9.tar.gz
yuzu-0832da3e4054d0b47c39e95553b5f3be5848eae9.tar.xz
yuzu-0832da3e4054d0b47c39e95553b5f3be5848eae9.zip
Merge pull request #4799 from bunnei/execute-program
core: Refactor loader and implement ExecuteProgram
Diffstat (limited to 'src/core/loader/xci.h')
-rw-r--r--src/core/loader/xci.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/loader/xci.h b/src/core/loader/xci.h
index 6dc1f9243..764dc8328 100644
--- a/src/core/loader/xci.h
+++ b/src/core/loader/xci.h
@@ -28,7 +28,8 @@ class AppLoader_XCI final : public AppLoader {
28public: 28public:
29 explicit AppLoader_XCI(FileSys::VirtualFile file, 29 explicit AppLoader_XCI(FileSys::VirtualFile file,
30 const Service::FileSystem::FileSystemController& fsc, 30 const Service::FileSystem::FileSystemController& fsc,
31 const FileSys::ContentProvider& content_provider); 31 const FileSys::ContentProvider& content_provider,
32 std::size_t program_index);
32 ~AppLoader_XCI() override; 33 ~AppLoader_XCI() override;
33 34
34 /** 35 /**