diff options
author | wwylele <wwylele@gmail.com> | 2016-04-13 23:04:05 +0200 |
---|---|---|
committer | wwylele <wwylele@gmail.com> | 2016-05-04 12:02:49 +0200 |
commit | 5d5dd66d9222ced82dd61747ef4078fc1eae2496 (patch) | |
tree | e7495d933b0fbdc767426fc18940f95b7817c8ab /src/core/loader/3dsx.h | |
parent | Merge pull request #1726 from MerryMage/read-write-region (diff) | |
download | yuzu-5d5dd66d9222ced82dd61747ef4078fc1eae2496.tar yuzu-5d5dd66d9222ced82dd61747ef4078fc1eae2496.tar.gz yuzu-5d5dd66d9222ced82dd61747ef4078fc1eae2496.tar.bz2 yuzu-5d5dd66d9222ced82dd61747ef4078fc1eae2496.tar.lz yuzu-5d5dd66d9222ced82dd61747ef4078fc1eae2496.tar.xz yuzu-5d5dd66d9222ced82dd61747ef4078fc1eae2496.tar.zst yuzu-5d5dd66d9222ced82dd61747ef4078fc1eae2496.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/loader/3dsx.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/core/loader/3dsx.h b/src/core/loader/3dsx.h index 365ddb7a5..3ee686703 100644 --- a/src/core/loader/3dsx.h +++ b/src/core/loader/3dsx.h @@ -17,7 +17,7 @@ namespace Loader { /// Loads an 3DSX file class AppLoader_THREEDSX final : public AppLoader { public: - AppLoader_THREEDSX(FileUtil::IOFile&& file, std::string filename, const std::string& filepath) + AppLoader_THREEDSX(FileUtil::IOFile&& file, const std::string& filename, const std::string& filepath) : AppLoader(std::move(file)), filename(std::move(filename)), filepath(filepath) {} /** @@ -34,6 +34,13 @@ public: ResultStatus Load() override; /** + * Get the icon (typically icon section) of the application + * @param buffer Reference to buffer to store data + * @return ResultStatus result of function + */ + ResultStatus ReadIcon(std::vector<u8>& buffer) override; + + /** * Get the RomFS of the application * @param romfs_file Reference to buffer to store data * @param offset Offset in the file to the RomFS |