Merge pull request #12808 from t895/uri-moment

vfs: Fix getting URI filename
This commit is contained in:
liamwhite 2024-01-26 10:23:08 -05:00 committed by GitHub
commit bd8635e26a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 0 deletions

View File

@ -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());
}