diff options
author | t895 <[email protected]> | 2024-01-26 09:08:31 -0500 |
---|---|---|
committer | t895 <[email protected]> | 2024-01-26 09:57:22 -0500 |
commit | f2fb761bacc88bf31fc2699b474d45f015e7283b (patch) | |
tree | 156fbe9da37d7dc32bb85f176b89d25980423229 /src/core/file_sys | |
parent | 59aee2b4617811a07307fddcb03c0d55cdc8e16b (diff) | |
download | yuzu-android-f2fb761bacc88bf31fc2699b474d45f015e7283b.tar.gz yuzu-android-f2fb761bacc88bf31fc2699b474d45f015e7283b.zip |
vfs: Fix getting URI filename
Diffstat (limited to 'src/core/file_sys')
-rw-r--r-- | src/core/file_sys/vfs/vfs_real.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/file_sys/vfs/vfs_real.cpp b/src/core/file_sys/vfs/vfs_real.cpp index 627d5d251..3ad073e4a 100644 --- a/src/core/file_sys/vfs/vfs_real.cpp +++ b/src/core/file_sys/vfs/vfs_real.cpp @@ -20,6 +20,10 @@ #define stat _stat64 #endif +#ifdef ANDROID +#include "common/fs/fs_android.h" +#endif + namespace FileSys { namespace FS = Common::FS; @@ -274,6 +278,11 @@ RealVfsFile::~RealVfsFile() { } std::string RealVfsFile::GetName() const { +#ifdef ANDROID + if (path[0] != '/') { + return FS::Android::GetFilename(path); + } +#endif return path_components.empty() ? "" : std::string(path_components.back()); } |