diff options
| author | 2020-02-12 01:18:26 -0500 | |
|---|---|---|
| committer | 2020-02-12 01:18:29 -0500 | |
| commit | f00a54f5081b7486e0a2f0bee8d15e3e41e186a0 (patch) | |
| tree | 24940afdb93e6242ec34b2e5b8cf6c7682c9541b /src | |
| parent | bcat/backend: Prevent fmt exception in debug log within NullBackend::Clear() (diff) | |
| download | yuzu-f00a54f5081b7486e0a2f0bee8d15e3e41e186a0.tar.gz yuzu-f00a54f5081b7486e0a2f0bee8d15e3e41e186a0.tar.xz yuzu-f00a54f5081b7486e0a2f0bee8d15e3e41e186a0.zip | |
bcat/backend: Make formatting of passphrase consistent in NullBackend::SetPassphrase()
Aligns the '=' to be consistent with the rest of the logs within this
source file.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/bcat/backend/backend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/bcat/backend/backend.cpp b/src/core/hle/service/bcat/backend/backend.cpp index 826c89970..def3410cc 100644 --- a/src/core/hle/service/bcat/backend/backend.cpp +++ b/src/core/hle/service/bcat/backend/backend.cpp | |||
| @@ -123,7 +123,7 @@ bool NullBackend::Clear(u64 title_id) { | |||
| 123 | } | 123 | } |
| 124 | 124 | ||
| 125 | void NullBackend::SetPassphrase(u64 title_id, const Passphrase& passphrase) { | 125 | void NullBackend::SetPassphrase(u64 title_id, const Passphrase& passphrase) { |
| 126 | LOG_DEBUG(Service_BCAT, "called, title_id={:016X}, passphrase = {}", title_id, | 126 | LOG_DEBUG(Service_BCAT, "called, title_id={:016X}, passphrase={}", title_id, |
| 127 | Common::HexToString(passphrase)); | 127 | Common::HexToString(passphrase)); |
| 128 | } | 128 | } |
| 129 | 129 | ||