mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Postshader: Avoid treating directories as files.
This commit is contained in:
parent
4c6f6b63dd
commit
868568a744
1 changed files with 3 additions and 0 deletions
|
@ -96,6 +96,9 @@ void LoadPostShaderInfo(Draw::DrawContext *draw, const std::vector<Path> &direct
|
|||
for (size_t f = 0; f < fileInfo.size(); f++) {
|
||||
IniFile ini;
|
||||
bool success = false;
|
||||
if (fileInfo[f].isDirectory)
|
||||
continue;
|
||||
|
||||
Path name = fileInfo[f].fullName;
|
||||
Path path = directories[d];
|
||||
// Hack around Android VFS path bug. really need to redesign this.
|
||||
|
|
Loading…
Add table
Reference in a new issue