diff options
| author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2014-12-15 05:03:17 -0200 |
|---|---|---|
| committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2014-12-16 01:08:43 -0200 |
| commit | 0931a42af0c0666dd9fbc20484b399c0e1ad3361 (patch) | |
| tree | 2d01160a592318c8bcfcba46b21fee90216c09e1 /src/core/file_sys/archive_romfs.cpp | |
| parent | d51afab0bc3a7e06a73f9f51afaf26cf83d87cd2 (diff) | |
Service.FS: Rename FileSys::File to FileBackend
Diffstat (limited to 'src/core/file_sys/archive_romfs.cpp')
| -rw-r--r-- | src/core/file_sys/archive_romfs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/file_sys/archive_romfs.cpp b/src/core/file_sys/archive_romfs.cpp index 8db7d69c5..c515e0dd9 100644 --- a/src/core/file_sys/archive_romfs.cpp +++ b/src/core/file_sys/archive_romfs.cpp @@ -29,8 +29,8 @@ Archive_RomFS::~Archive_RomFS() { * @param mode Mode to open the file with * @return Opened file, or nullptr */ -std::unique_ptr<File> Archive_RomFS::OpenFile(const Path& path, const Mode mode) const { - return std::unique_ptr<File>(new File_RomFS); +std::unique_ptr<FileBackend> Archive_RomFS::OpenFile(const Path& path, const Mode mode) const { + return std::unique_ptr<FileBackend>(new File_RomFS); } /** |
