summaryrefslogtreecommitdiff
path: root/src/core/loader/loader.h
diff options
context:
space:
mode:
authorGravatar bunnei2017-08-01 19:51:44 -0400
committerGravatar bunnei2017-08-03 20:10:37 -0400
commitf5cf9960d9eb5ff5afb39c0356f42035e2dd1ccf (patch)
tree851abceebb8196b95583a3bde4d2e97818b96f66 /src/core/loader/loader.h
parentMerge pull request #2850 from j-selby/fix_invalid_paths (diff)
downloadyuzu-f5cf9960d9eb5ff5afb39c0356f42035e2dd1ccf.tar.gz
yuzu-f5cf9960d9eb5ff5afb39c0356f42035e2dd1ccf.tar.xz
yuzu-f5cf9960d9eb5ff5afb39c0356f42035e2dd1ccf.zip
loader: Expose program title.
Diffstat (limited to 'src/core/loader/loader.h')
-rw-r--r--src/core/loader/loader.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h
index 48bbf687d..e731888a2 100644
--- a/src/core/loader/loader.h
+++ b/src/core/loader/loader.h
@@ -166,6 +166,15 @@ public:
166 return ResultStatus::ErrorNotImplemented; 166 return ResultStatus::ErrorNotImplemented;
167 } 167 }
168 168
169 /**
170 * Get the title of the application
171 * @param title Reference to store the application title into
172 * @return ResultStatus result of function
173 */
174 virtual ResultStatus ReadTitle(std::string& title) {
175 return ResultStatus::ErrorNotImplemented;
176 }
177
169protected: 178protected:
170 FileUtil::IOFile file; 179 FileUtil::IOFile file;
171 bool is_loaded = false; 180 bool is_loaded = false;