FileSys: remove Open from DirectoryBackend

Open should not be an interface exposed by Directory because it is the Archive thats implement the methed to open the directory. The service API of 3DS also implies this - Open is not a function of directory service, but is of FS main service
This commit is contained in:
wwylele 2016-10-16 23:09:36 +08:00
parent 37d6cbc200
commit 4675116401
4 changed files with 5 additions and 25 deletions

View file

@ -75,9 +75,6 @@ private:
class IVFCDirectory : public DirectoryBackend {
public:
bool Open() override {
return false;
}
u32 Read(const u32 count, Entry* entries) override {
return 0;
}