diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-05-02 09:14:28 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-05-02 09:49:36 -0400 |
| commit | 7c9644646f595605036b9fe9e51c44716ee60fa3 (patch) | |
| tree | 20f8f60d78ed7db5c76629d452ed196d43dc3e78 /src/core/loader/nso.cpp | |
| parent | 8262aeeac886f8b03cac5a5050580ac7ac77af4c (diff) | |
general: Make formatting of logged hex values more straightforward
This makes the formatting expectations more obvious (e.g. any zero padding specified
is padding that's entirely dedicated to the value being printed, not any pretty-printing
that also gets tacked on).
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 138883cc9..01be9e217 100644 --- a/src/core/loader/nso.cpp +++ b/src/core/loader/nso.cpp @@ -158,7 +158,7 @@ ResultStatus AppLoader_NSO::Load(Kernel::SharedPtr<Kernel::Process>& process) { // Load module LoadModule(filepath, Memory::PROCESS_IMAGE_VADDR); - NGLOG_DEBUG(Loader, "loaded module {} @ {:#X}", filepath, Memory::PROCESS_IMAGE_VADDR); + NGLOG_DEBUG(Loader, "loaded module {} @ 0x{:X}", filepath, Memory::PROCESS_IMAGE_VADDR); process->svc_access_mask.set(); process->address_mappings = default_address_mappings; |
