mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-20 02:37:54 -05:00
vfs_real: lazily open files
This commit is contained in:
@ -15,8 +15,7 @@ class IOFile;
|
||||
namespace FileSys {
|
||||
|
||||
struct FileReference : public Common::IntrusiveListBaseNode<FileReference> {
|
||||
FileReference(std::shared_ptr<Common::FS::IOFile>&& f) : file(f) {}
|
||||
std::shared_ptr<Common::FS::IOFile> file;
|
||||
std::shared_ptr<Common::FS::IOFile> file{};
|
||||
};
|
||||
|
||||
class RealVfsFile;
|
||||
|
Reference in New Issue
Block a user