summaryrefslogtreecommitdiff
path: root/src/core/loader/elf.cpp
diff options
context:
space:
mode:
authorGravatar Emmanuel Gil Peyrot2015-01-06 23:36:48 +0000
committerGravatar Emmanuel Gil Peyrot2015-01-15 21:21:26 +0000
commit43e699d849ac5dd7a29ff0eeb5821e2a824c091e (patch)
treeb05f3b2621d59bdd936211245126b51152a89f86 /src/core/loader/elf.cpp
parentLoader: Fix indentation, whitespace, and a few other such cosmetic stuff. (diff)
downloadyuzu-43e699d849ac5dd7a29ff0eeb5821e2a824c091e.tar.gz
yuzu-43e699d849ac5dd7a29ff0eeb5821e2a824c091e.tar.xz
yuzu-43e699d849ac5dd7a29ff0eeb5821e2a824c091e.zip
Loader: Don’t duplicate the docstring into the cpp file.
Diffstat (limited to 'src/core/loader/elf.cpp')
-rw-r--r--src/core/loader/elf.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core/loader/elf.cpp b/src/core/loader/elf.cpp
index 3ca60c072..89664229a 100644
--- a/src/core/loader/elf.cpp
+++ b/src/core/loader/elf.cpp
@@ -339,12 +339,6 @@ AppLoader_ELF::AppLoader_ELF(const std::string& filename) : is_loaded(false) {
339AppLoader_ELF::~AppLoader_ELF() { 339AppLoader_ELF::~AppLoader_ELF() {
340} 340}
341 341
342/**
343 * Loads an NCCH file (e.g. from a CCI, or the first NCCH in a CXI)
344 * @param error_string Pointer to string to put error message if an error has occurred
345 * @todo Move NCSD parsing out of here and create a separate function for loading these
346 * @return True on success, otherwise false
347 */
348ResultStatus AppLoader_ELF::Load() { 342ResultStatus AppLoader_ELF::Load() {
349 LOG_INFO(Loader, "Loading ELF file %s...", filename.c_str()); 343 LOG_INFO(Loader, "Loading ELF file %s...", filename.c_str());
350 344