summaryrefslogtreecommitdiffstats
path: root/src/core/loader/elf.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-12-08 00:15:30 +0100
committerGitHub <noreply@github.com>2018-12-08 00:15:30 +0100
commitf85134021f77e573c1a5f5602940e414a9ab45de (patch)
tree4c2f3d4c0872646bc74d9280bdbea0d737cda463 /src/core/loader/elf.h
parentMerge pull request #1868 from lioncash/config (diff)
parentyuzu/game_list_worker: Don't retrieve the file type twice in AddFstEntriesToGameList() (diff)
downloadyuzu-f85134021f77e573c1a5f5602940e414a9ab45de.tar
yuzu-f85134021f77e573c1a5f5602940e414a9ab45de.tar.gz
yuzu-f85134021f77e573c1a5f5602940e414a9ab45de.tar.bz2
yuzu-f85134021f77e573c1a5f5602940e414a9ab45de.tar.lz
yuzu-f85134021f77e573c1a5f5602940e414a9ab45de.tar.xz
yuzu-f85134021f77e573c1a5f5602940e414a9ab45de.tar.zst
yuzu-f85134021f77e573c1a5f5602940e414a9ab45de.zip
Diffstat (limited to 'src/core/loader/elf.h')
-rw-r--r--src/core/loader/elf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/elf.h b/src/core/loader/elf.h
index 6af76441c..a2d33021c 100644
--- a/src/core/loader/elf.h
+++ b/src/core/loader/elf.h
@@ -22,7 +22,7 @@ public:
*/
static FileType IdentifyType(const FileSys::VirtualFile& file);
- FileType GetFileType() override {
+ FileType GetFileType() const override {
return IdentifyType(file);
}