mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix File::GetFileInfo for Content URIs. Can now load homebrew.
This commit is contained in:
parent
1aed8ce7b1
commit
6078701f9d
1 changed files with 2 additions and 0 deletions
|
@ -42,6 +42,8 @@ bool GetFileInfo(const Path &path, FileInfo * fileInfo) {
|
|||
switch (path.Type()) {
|
||||
case PathType::NATIVE:
|
||||
break; // OK
|
||||
case PathType::CONTENT_URI:
|
||||
return Android_GetFileInfo(path.ToString(), fileInfo);
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue