summaryrefslogtreecommitdiff
path: root/src/core/loader/elf.h
diff options
context:
space:
mode:
authorGravatar bunnei2016-10-11 17:26:25 -0400
committerGravatar bunnei2016-12-21 23:27:50 -0500
commit81e22ae8c75d7e1fb674258833a473d448b856b5 (patch)
treeaf2e45fda4eee9356771fb4aaa6db884876396bb /src/core/loader/elf.h
parentMerge pull request #2362 from lioncash/graphics (diff)
downloadyuzu-81e22ae8c75d7e1fb674258833a473d448b856b5.tar.gz
yuzu-81e22ae8c75d7e1fb674258833a473d448b856b5.tar.xz
yuzu-81e22ae8c75d7e1fb674258833a473d448b856b5.zip
loader: Remove duplicate docstrings.
Diffstat (limited to 'src/core/loader/elf.h')
-rw-r--r--src/core/loader/elf.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/core/loader/elf.h b/src/core/loader/elf.h
index 584bf6e27..862aa90d8 100644
--- a/src/core/loader/elf.h
+++ b/src/core/loader/elf.h
@@ -26,18 +26,10 @@ public:
26 */ 26 */
27 static FileType IdentifyType(FileUtil::IOFile& file); 27 static FileType IdentifyType(FileUtil::IOFile& file);
28 28
29 /**
30 * Returns the type of this file
31 * @return FileType corresponding to the loaded file
32 */
33 FileType GetFileType() override { 29 FileType GetFileType() override {
34 return IdentifyType(file); 30 return IdentifyType(file);
35 } 31 }
36 32
37 /**
38 * Load the bootable file
39 * @return ResultStatus result of function
40 */
41 ResultStatus Load() override; 33 ResultStatus Load() override;
42 34
43private: 35private: