diff options
| author | 2015-01-06 23:36:48 +0000 | |
|---|---|---|
| committer | 2015-01-15 21:21:26 +0000 | |
| commit | 43e699d849ac5dd7a29ff0eeb5821e2a824c091e (patch) | |
| tree | b05f3b2621d59bdd936211245126b51152a89f86 /src/core/loader/elf.cpp | |
| parent | Loader: Fix indentation, whitespace, and a few other such cosmetic stuff. (diff) | |
| download | yuzu-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.cpp | 6 |
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) { | |||
| 339 | AppLoader_ELF::~AppLoader_ELF() { | 339 | AppLoader_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 | */ | ||
| 348 | ResultStatus AppLoader_ELF::Load() { | 342 | ResultStatus 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 | ||