diff options
author | bunnei <bunneidev@gmail.com> | 2017-10-14 23:37:51 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2017-10-14 23:37:51 +0200 |
commit | 12c7469d813b8122d0cb7008dbaa96f5c9b75f97 (patch) | |
tree | 171c70a2e645ab3572735c80091857737f393704 | |
parent | svc: Some logging cleanup. (diff) | |
download | yuzu-12c7469d813b8122d0cb7008dbaa96f5c9b75f97.tar yuzu-12c7469d813b8122d0cb7008dbaa96f5c9b75f97.tar.gz yuzu-12c7469d813b8122d0cb7008dbaa96f5c9b75f97.tar.bz2 yuzu-12c7469d813b8122d0cb7008dbaa96f5c9b75f97.tar.lz yuzu-12c7469d813b8122d0cb7008dbaa96f5c9b75f97.tar.xz yuzu-12c7469d813b8122d0cb7008dbaa96f5c9b75f97.tar.zst yuzu-12c7469d813b8122d0cb7008dbaa96f5c9b75f97.zip |
-rw-r--r-- | src/core/loader/nso.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/loader/nso.cpp b/src/core/loader/nso.cpp index b1b57d0c0..5ebbde19a 100644 --- a/src/core/loader/nso.cpp +++ b/src/core/loader/nso.cpp @@ -162,6 +162,7 @@ ResultStatus AppLoader_NSO::Load(Kernel::SharedPtr<Kernel::Process>& process) { // Load and relocate remaining submodules for (const auto& module_name : {"main", "sdk", "subsdk0", "subsdk1"}) { + LOG_INFO(Loader, "loading %s @ 0x%08x", module_name, next_base_addr); const std::string module_path = filepath.substr(0, filepath.find_last_of("/\\")) + "/" + module_name; next_base_addr = LoadNso(module_path, next_base_addr); |