mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-01-22 13:48:34 +00:00
Correct the startSector read by sceIoDread().
This commit is contained in:
parent
165cfe53a3
commit
f4a0709286
@ -559,7 +559,7 @@ std::vector<PSPFileInfo> ISOFileSystem::GetDirListing(std::string path)
|
||||
x.size = e->size;
|
||||
x.type = e->isDirectory ? FILETYPE_DIRECTORY : FILETYPE_NORMAL;
|
||||
x.isOnSectorSystem = true;
|
||||
x.startSector = entry->startingPosition/2048;
|
||||
x.startSector = e->startingPosition/2048;
|
||||
myVector.push_back(x);
|
||||
}
|
||||
return myVector;
|
||||
|
Loading…
x
Reference in New Issue
Block a user