mirror of
https://github.com/izzy2lost/ppsspp.git
synced 2026-03-10 12:43:04 -07:00
It never ends...
This commit is contained in:
@@ -50,8 +50,8 @@
|
||||
|
||||
const std::string INDEX_FILENAME = ".ppsspp-index.lst";
|
||||
|
||||
VirtualDiscFileSystem::VirtualDiscFileSystem(IHandleAllocator *_hAlloc, std::string _basePath)
|
||||
: basePath(_basePath),currentBlockIndex(0) {
|
||||
VirtualDiscFileSystem::VirtualDiscFileSystem(IHandleAllocator *_hAlloc, const Path &_basePath)
|
||||
: basePath(_basePath), currentBlockIndex(0) {
|
||||
hAlloc = _hAlloc;
|
||||
LoadFileListIndex();
|
||||
}
|
||||
@@ -78,13 +78,6 @@ void VirtualDiscFileSystem::LoadFileListIndex() {
|
||||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
in.open(filename.c_str(), std::ios::in);
|
||||
if (in.fail()) {
|
||||
>>>>>>> 52a34c2de (Introduce Path, start using it all over the place.)
|
||||
return;
|
||||
}*/
|
||||
|
||||
std::string buf;
|
||||
static const int MAX_LINE_SIZE = 2048;
|
||||
char linebuf[MAX_LINE_SIZE]{};
|
||||
|
||||
Reference in New Issue
Block a user