diff options
| author | 2018-12-02 22:17:09 -0500 | |
|---|---|---|
| committer | 2018-12-02 23:38:58 -0500 | |
| commit | fc32d6256adb479e3e990a0f3221d02ef09b1744 (patch) | |
| tree | a8c52cfc376ea7ea7ddf2e684c3ebb7517fa13eb /src/core/loader/nro.h | |
| parent | loader/nro: Remove dependency on the System class (diff) | |
| download | yuzu-fc32d6256adb479e3e990a0f3221d02ef09b1744.tar.gz yuzu-fc32d6256adb479e3e990a0f3221d02ef09b1744.tar.xz yuzu-fc32d6256adb479e3e990a0f3221d02ef09b1744.zip | |
loader/nro: Make the static LoadNro function internally linked
This simply acts as a forwarding function for the Load() function, so
this doesn't need to be directly exposed.
Diffstat (limited to 'src/core/loader/nro.h')
| -rw-r--r-- | src/core/loader/nro.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/loader/nro.h b/src/core/loader/nro.h index 6a63d1a7a..6deff3a51 100644 --- a/src/core/loader/nro.h +++ b/src/core/loader/nro.h | |||
| @@ -45,9 +45,6 @@ public: | |||
| 45 | ResultStatus ReadTitle(std::string& title) override; | 45 | ResultStatus ReadTitle(std::string& title) override; |
| 46 | bool IsRomFSUpdatable() const override; | 46 | bool IsRomFSUpdatable() const override; |
| 47 | 47 | ||
| 48 | static bool LoadNro(Kernel::Process& process, const std::vector<u8>& data, | ||
| 49 | const std::string& name, VAddr load_base); | ||
| 50 | |||
| 51 | private: | 48 | private: |
| 52 | bool LoadNro(Kernel::Process& process, const FileSys::VfsFile& file, VAddr load_base); | 49 | bool LoadNro(Kernel::Process& process, const FileSys::VfsFile& file, VAddr load_base); |
| 53 | 50 | ||