mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 19:45:46 +00:00
Service.FS: Rename FileSys::Directory to DirectoryBackend
This commit is contained in:
parent
82fe821e87
commit
d51afab0bc
10 changed files with 18 additions and 18 deletions
|
@ -11,7 +11,7 @@
|
|||
#include "common/bit_field.h"
|
||||
|
||||
#include "core/file_sys/file.h"
|
||||
#include "core/file_sys/directory.h"
|
||||
#include "core/file_sys/directory_backend.h"
|
||||
|
||||
#include "core/mem_map.h"
|
||||
#include "core/hle/kernel/kernel.h"
|
||||
|
@ -219,7 +219,7 @@ public:
|
|||
* @param path Path relative to the archive
|
||||
* @return Opened directory, or nullptr
|
||||
*/
|
||||
virtual std::unique_ptr<Directory> OpenDirectory(const Path& path) const = 0;
|
||||
virtual std::unique_ptr<DirectoryBackend> OpenDirectory(const Path& path) const = 0;
|
||||
|
||||
/**
|
||||
* Read data from the archive
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue