diff options
author | bunnei <bunneidev@gmail.com> | 2018-01-20 20:55:54 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-01-20 20:59:44 +0100 |
commit | 023aef053c96c92c9ea15d067f7d2cb7150585d6 (patch) | |
tree | 6b8a4c0dc9aae92ff172a2715969b8551e9d14b1 /src/core/loader/elf.cpp | |
parent | nso: Remove code specific to directory loading. (diff) | |
download | yuzu-023aef053c96c92c9ea15d067f7d2cb7150585d6.tar yuzu-023aef053c96c92c9ea15d067f7d2cb7150585d6.tar.gz yuzu-023aef053c96c92c9ea15d067f7d2cb7150585d6.tar.bz2 yuzu-023aef053c96c92c9ea15d067f7d2cb7150585d6.tar.lz yuzu-023aef053c96c92c9ea15d067f7d2cb7150585d6.tar.xz yuzu-023aef053c96c92c9ea15d067f7d2cb7150585d6.tar.zst yuzu-023aef053c96c92c9ea15d067f7d2cb7150585d6.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/loader/elf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/elf.cpp b/src/core/loader/elf.cpp index 9ba913dbe..a41d0b94a 100644 --- a/src/core/loader/elf.cpp +++ b/src/core/loader/elf.cpp @@ -364,7 +364,7 @@ SectionID ElfReader::GetSectionByName(const char* name, int firstSection) const namespace Loader { -FileType AppLoader_ELF::IdentifyType(FileUtil::IOFile& file) { +FileType AppLoader_ELF::IdentifyType(FileUtil::IOFile& file, const std::string&) { static constexpr u16 ELF_MACHINE_ARM{0x28}; u32 magic = 0; |