diff options
| author | 2015-07-11 19:16:33 -0300 | |
|---|---|---|
| committer | 2015-07-13 20:00:56 -0300 | |
| commit | 2d7299a86fdc4ba2485042f950d864e063be5e97 (patch) | |
| tree | 26c15a7b8fe0563dc39dd80564c30405d458bfe7 /src/core/loader/3dsx.h | |
| parent | FS: Stream RomFS from file instead of loading all of it to memory (diff) | |
| download | yuzu-2d7299a86fdc4ba2485042f950d864e063be5e97.tar.gz yuzu-2d7299a86fdc4ba2485042f950d864e063be5e97.tar.xz yuzu-2d7299a86fdc4ba2485042f950d864e063be5e97.zip | |
Loader: Remove unnecessary pointer indirection to IOFile
Diffstat (limited to 'src/core/loader/3dsx.h')
| -rw-r--r-- | src/core/loader/3dsx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/3dsx.h b/src/core/loader/3dsx.h index 096b3ec20..a0aa0c533 100644 --- a/src/core/loader/3dsx.h +++ b/src/core/loader/3dsx.h | |||
| @@ -17,7 +17,7 @@ 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(std::unique_ptr<FileUtil::IOFile>&& file, std::string filename) | 20 | AppLoader_THREEDSX(FileUtil::IOFile&& file, std::string filename) |
| 21 | : AppLoader(std::move(file)), filename(std::move(filename)) {} | 21 | : AppLoader(std::move(file)), filename(std::move(filename)) {} |
| 22 | 22 | ||
| 23 | /** | 23 | /** |