diff options
author | bunnei <bunneidev@gmail.com> | 2016-05-25 16:40:36 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2016-05-25 16:40:36 -0400 |
commit | f50a32bfce099eeff510e5e314b91dcf65d317ac (patch) | |
tree | 5bc0347199d722861ba09897e6c6e9015cf026bc /src/core/loader/3dsx.h | |
parent | c106f71bebdc6fffc03967f5a57618cfbe2ebaed (diff) | |
parent | 080a2d719ca825961ec2db5f26ad22e43d456c5a (diff) |
Merge pull request #1817 from linkmauve/smdh-stuff
Improve SMDH support in loaders and frontends
Diffstat (limited to 'src/core/loader/3dsx.h')
-rw-r--r-- | src/core/loader/3dsx.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/loader/3dsx.h b/src/core/loader/3dsx.h index 3ee686703..90b20c61c 100644 --- a/src/core/loader/3dsx.h +++ b/src/core/loader/3dsx.h @@ -28,6 +28,14 @@ public: static FileType IdentifyType(FileUtil::IOFile& file); /** + * Returns the type of this file + * @return FileType corresponding to the loaded file + */ + FileType GetFileType() override { + return IdentifyType(file); + } + + /** * Load the bootable file * @return ResultStatus result of function */ |