diff options
Diffstat (limited to 'src/core/loader/nso.cpp')
| -rw-r--r-- | src/core/loader/nso.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/nso.cpp b/src/core/loader/nso.cpp index 0d16d4b8c..7b44d452e 100644 --- a/src/core/loader/nso.cpp +++ b/src/core/loader/nso.cpp | |||
| @@ -163,7 +163,7 @@ ResultStatus AppLoader_NSO::Load(Kernel::SharedPtr<Kernel::Process>& process) { | |||
| 163 | 163 | ||
| 164 | // Load and relocate remaining submodules | 164 | // Load and relocate remaining submodules |
| 165 | for (const auto& module_name : {"main", "sdk", "subsdk0", "subsdk1"}) { | 165 | for (const auto& module_name : {"main", "sdk", "subsdk0", "subsdk1"}) { |
| 166 | LOG_INFO(Loader, "loading %s @ 0x%08x", module_name, next_base_addr); | 166 | LOG_INFO(Loader, "loading %s @ 0x%llx", module_name, next_base_addr); |
| 167 | const std::string module_path = | 167 | const std::string module_path = |
| 168 | filepath.substr(0, filepath.find_last_of("/\\")) + "/" + module_name; | 168 | filepath.substr(0, filepath.find_last_of("/\\")) + "/" + module_name; |
| 169 | next_base_addr = LoadNso(module_path, next_base_addr); | 169 | next_base_addr = LoadNso(module_path, next_base_addr); |