aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/file_sys/file_romfs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/file_sys/file_romfs.h')
-rw-r--r--src/core/file_sys/file_romfs.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/core/file_sys/file_romfs.h b/src/core/file_sys/file_romfs.h
index 4ddaafe2..09fa2e7e 100644
--- a/src/core/file_sys/file_romfs.h
+++ b/src/core/file_sys/file_romfs.h
@@ -14,10 +14,11 @@
namespace FileSys {
+class Archive_RomFS;
+
class File_RomFS final : public FileBackend {
public:
- File_RomFS();
- ~File_RomFS() override;
+ File_RomFS(const Archive_RomFS* archive) : archive(archive) {}
/**
* Open the file
@@ -62,6 +63,9 @@ public:
* @return true if the file closed correctly
*/
bool Close() const override;
+
+private:
+ const Archive_RomFS* archive;
};
} // namespace FileSys