diff options
Diffstat (limited to 'src/core/loader/3dsx.h')
| -rw-r--r-- | src/core/loader/3dsx.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/core/loader/3dsx.h b/src/core/loader/3dsx.h index 90b20c61c..09a788a1c 100644 --- a/src/core/loader/3dsx.h +++ b/src/core/loader/3dsx.h | |||
| @@ -17,8 +17,10 @@ namespace Loader { | |||
| 17 | /// Loads an 3DSX file | 17 | /// Loads an 3DSX file |
| 18 | class AppLoader_THREEDSX final : public AppLoader { | 18 | class AppLoader_THREEDSX final : public AppLoader { |
| 19 | public: | 19 | public: |
| 20 | AppLoader_THREEDSX(FileUtil::IOFile&& file, const std::string& filename, const std::string& filepath) | 20 | AppLoader_THREEDSX(FileUtil::IOFile&& file, const std::string& filename, |
| 21 | : AppLoader(std::move(file)), filename(std::move(filename)), filepath(filepath) {} | 21 | const std::string& filepath) |
| 22 | : AppLoader(std::move(file)), filename(std::move(filename)), filepath(filepath) { | ||
| 23 | } | ||
| 22 | 24 | ||
| 23 | /** | 25 | /** |
| 24 | * Returns the type of the file | 26 | * Returns the type of the file |
| @@ -55,7 +57,8 @@ public: | |||
| 55 | * @param size Size of the RomFS in bytes | 57 | * @param size Size of the RomFS in bytes |
| 56 | * @return ResultStatus result of function | 58 | * @return ResultStatus result of function |
| 57 | */ | 59 | */ |
| 58 | ResultStatus ReadRomFS(std::shared_ptr<FileUtil::IOFile>& romfs_file, u64& offset, u64& size) override; | 60 | ResultStatus ReadRomFS(std::shared_ptr<FileUtil::IOFile>& romfs_file, u64& offset, |
| 61 | u64& size) override; | ||
| 59 | 62 | ||
| 60 | private: | 63 | private: |
| 61 | std::string filename; | 64 | std::string filename; |