mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-25 19:30:53 +00:00
Fix a typo that was causing VFS to fail for Qt.
This commit is contained in:
parent
ce20273f5f
commit
ecd364d854
@ -90,7 +90,7 @@ bool AssetsAssetReader::GetFileListing(const char *path, std::vector<FileInfo> *
|
||||
|
||||
bool AssetsAssetReader::GetFileInfo(const char *path, FileInfo *info) {
|
||||
QFileInfo qinfo(QString(":/assets/") + path);
|
||||
if (qinfo.exists()) {
|
||||
if (!qinfo.exists()) {
|
||||
info->exists = false;
|
||||
info->size = 0;
|
||||
return false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user