summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/bcat/backend/boxcat.cpp
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2019-06-21 02:31:17 +0200
committerZach Hilman <zachhilman@gmail.com>2019-09-30 23:28:23 +0200
commitbcf1eafb8bd1a810fd33a7e7e06a86173b4bfb9f (patch)
treea63e45e3d4d53667357f927987374fa151a08f6b /src/core/hle/service/bcat/backend/boxcat.cpp
parentbcat: Implement DeliveryCacheProgressImpl structure (diff)
downloadyuzu-bcf1eafb8bd1a810fd33a7e7e06a86173b4bfb9f.tar
yuzu-bcf1eafb8bd1a810fd33a7e7e06a86173b4bfb9f.tar.gz
yuzu-bcf1eafb8bd1a810fd33a7e7e06a86173b4bfb9f.tar.bz2
yuzu-bcf1eafb8bd1a810fd33a7e7e06a86173b4bfb9f.tar.lz
yuzu-bcf1eafb8bd1a810fd33a7e7e06a86173b4bfb9f.tar.xz
yuzu-bcf1eafb8bd1a810fd33a7e7e06a86173b4bfb9f.tar.zst
yuzu-bcf1eafb8bd1a810fd33a7e7e06a86173b4bfb9f.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/bcat/backend/boxcat.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/hle/service/bcat/backend/boxcat.cpp b/src/core/hle/service/bcat/backend/boxcat.cpp
index 3754594df..5bc2e22d7 100644
--- a/src/core/hle/service/bcat/backend/boxcat.cpp
+++ b/src/core/hle/service/bcat/backend/boxcat.cpp
@@ -214,8 +214,7 @@ private:
std::vector<u8> bytes(file.GetSize());
file.ReadBytes(bytes.data(), bytes.size());
const auto digest = DigestFile(bytes);
- headers.insert(
- {std::string("If-None-Match"), Common::HexArrayToString(digest, false)});
+ headers.insert({std::string("If-None-Match"), Common::HexToString(digest, false)});
}
}
@@ -402,7 +401,7 @@ bool Boxcat::Clear(u64 title_id) {
void Boxcat::SetPassphrase(u64 title_id, const Passphrase& passphrase) {
LOG_DEBUG(Service_BCAT, "called, title_id={:016X}, passphrase={}", title_id,
- Common::HexArrayToString(passphrase));
+ Common::HexToString(passphrase));
}
std::optional<std::vector<u8>> Boxcat::GetLaunchParameter(TitleIDVersion title) {