summaryrefslogtreecommitdiffstats
path: root/src/core/loader/nro.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2017-10-10 03:39:32 +0200
committerbunnei <bunneidev@gmail.com>2017-10-10 03:39:32 +0200
commit23ce4f5afc66eb04a7aafc4f89685b8109b8d5c6 (patch)
tree168e7793c6d68eb8b195850a056443ea98f430a9 /src/core/loader/nro.h
parentloader: Add support for NRO, as well as various fixes and shared linker. (diff)
downloadyuzu-23ce4f5afc66eb04a7aafc4f89685b8109b8d5c6.tar
yuzu-23ce4f5afc66eb04a7aafc4f89685b8109b8d5c6.tar.gz
yuzu-23ce4f5afc66eb04a7aafc4f89685b8109b8d5c6.tar.bz2
yuzu-23ce4f5afc66eb04a7aafc4f89685b8109b8d5c6.tar.lz
yuzu-23ce4f5afc66eb04a7aafc4f89685b8109b8d5c6.tar.xz
yuzu-23ce4f5afc66eb04a7aafc4f89685b8109b8d5c6.tar.zst
yuzu-23ce4f5afc66eb04a7aafc4f89685b8109b8d5c6.zip
Diffstat (limited to '')
-rw-r--r--src/core/loader/nro.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/core/loader/nro.h b/src/core/loader/nro.h
index d145b68d5..c3c7622fd 100644
--- a/src/core/loader/nro.h
+++ b/src/core/loader/nro.h
@@ -17,9 +17,8 @@ namespace Loader {
/// Loads an NRO file
class AppLoader_NRO final : public AppLoader, Linker {
public:
- AppLoader_NRO(FileUtil::IOFile&& file, std::string filename, std::string filepath)
- : AppLoader(std::move(file)), filename(std::move(filename)), filepath(std::move(filepath)) {
- }
+ AppLoader_NRO(FileUtil::IOFile&& file, std::string filepath)
+ : AppLoader(std::move(file)), filepath(std::move(filepath)) {}
/**
* Returns the type of the file
@@ -35,10 +34,8 @@ public:
ResultStatus Load() override;
private:
- VAddr GetEntryPoint(VAddr load_base) const;
bool LoadNro(const std::string& path, VAddr load_base);
- std::string filename;
std::string filepath;
};