mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-25 08:14:45 +02:00
Correct the startSector read by sceIoDread().
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user