summaryrefslogtreecommitdiffstats
path: root/src/core/loader/loader.h
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-06-19 23:46:05 +0200
committerbunnei <ericbunnie@gmail.com>2014-06-25 01:30:06 +0200
commit62b444cd17c17e6f8009d87609b620bcb51b43bd (patch)
treec99a07441b97232f8f90f9ec06a0291a1ce5c396 /src/core/loader/loader.h
parentNCCH: Added RomFS loading. (diff)
downloadyuzu-62b444cd17c17e6f8009d87609b620bcb51b43bd.tar
yuzu-62b444cd17c17e6f8009d87609b620bcb51b43bd.tar.gz
yuzu-62b444cd17c17e6f8009d87609b620bcb51b43bd.tar.bz2
yuzu-62b444cd17c17e6f8009d87609b620bcb51b43bd.tar.lz
yuzu-62b444cd17c17e6f8009d87609b620bcb51b43bd.tar.xz
yuzu-62b444cd17c17e6f8009d87609b620bcb51b43bd.tar.zst
yuzu-62b444cd17c17e6f8009d87609b620bcb51b43bd.zip
Diffstat (limited to 'src/core/loader/loader.h')
-rw-r--r--src/core/loader/loader.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h
index 38b3d4c99..002af1f60 100644
--- a/src/core/loader/loader.h
+++ b/src/core/loader/loader.h
@@ -44,7 +44,7 @@ public:
* Load the application
* @return ResultStatus result of function
*/
- virtual const ResultStatus Load() = 0;
+ virtual ResultStatus Load() = 0;
/**
* Get the code (typically .code section) of the application
@@ -109,13 +109,13 @@ protected:
* @param filename String filename of bootable file
* @return FileType of file
*/
-const FileType IdentifyFile(const std::string &filename);
+FileType IdentifyFile(const std::string &filename);
/**
* Identifies and loads a bootable file
* @param filename String filename of bootable file
* @return ResultStatus result of function
*/
-const ResultStatus LoadFile(std::string& filename);
+ResultStatus LoadFile(const std::string& filename);
} // namespace