diff options
| author | Lioncash <mathew1800@gmail.com> | 2019-06-12 17:27:06 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2019-06-12 17:54:05 -0400 |
| commit | a62088539ed02a8569814601b3b99b713c5d8a34 (patch) | |
| tree | 03fe279e7651c55291f702f5a8b518cb07e35812 /src/core/hle/service/ldr/ldr.cpp | |
| parent | 7e2bcf04b471579054424fd26746826747c0d335 (diff) | |
common/hex_util: Combine HexVectorToString() and HexArrayToString()
These can be generified together by using a concept type to designate
them. This also has the benefit of not making copies of potentially very
large arrays.
Diffstat (limited to 'src/core/hle/service/ldr/ldr.cpp')
| -rw-r--r-- | src/core/hle/service/ldr/ldr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/ldr/ldr.cpp b/src/core/hle/service/ldr/ldr.cpp index 5af925515..b839303ac 100644 --- a/src/core/hle/service/ldr/ldr.cpp +++ b/src/core/hle/service/ldr/ldr.cpp @@ -310,7 +310,7 @@ public: if (!IsValidNROHash(hash)) { LOG_ERROR(Service_LDR, "NRO hash is not present in any currently loaded NRRs (hash={})!", - Common::HexArrayToString(hash)); + Common::HexToString(hash)); IPC::ResponseBuilder rb{ctx, 2}; rb.Push(ERROR_MISSING_NRR_HASH); return; |
