diff options
author | bunnei <bunneidev@gmail.com> | 2018-12-11 03:52:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-11 03:52:19 +0100 |
commit | 2c45c6d23431021efb1053abcb40064256aac338 (patch) | |
tree | edd00a30fa32460e8158992d53768038e83141dc /src/core/core.h | |
parent | Merge pull request #1887 from FearlessTobi/port-4476 (diff) | |
parent | qt: Add Properties menu to game list right-click (diff) | |
download | yuzu-2c45c6d23431021efb1053abcb40064256aac338.tar yuzu-2c45c6d23431021efb1053abcb40064256aac338.tar.gz yuzu-2c45c6d23431021efb1053abcb40064256aac338.tar.bz2 yuzu-2c45c6d23431021efb1053abcb40064256aac338.tar.lz yuzu-2c45c6d23431021efb1053abcb40064256aac338.tar.xz yuzu-2c45c6d23431021efb1053abcb40064256aac338.tar.zst yuzu-2c45c6d23431021efb1053abcb40064256aac338.zip |
Diffstat (limited to 'src/core/core.h')
-rw-r--r-- | src/core/core.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h index be71bd437..71031dfcf 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -9,6 +9,7 @@ #include <string> #include "common/common_types.h" +#include "core/file_sys/vfs_types.h" #include "core/hle/kernel/object.h" namespace Core::Frontend { @@ -55,6 +56,9 @@ class TelemetrySession; struct PerfStatsResults; +FileSys::VirtualFile GetGameFileFromPath(const FileSys::VirtualFilesystem& vfs, + const std::string& path); + class System { public: System(const System&) = delete; |