From ab2005d50d7ed35bd832eb24c18a3854901694d0 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Sun, 1 Dec 2024 00:03:42 +0200 Subject: [PATCH] Specify SHA-256 when printing firmware info --- src/core/services/dsp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/services/dsp.cpp b/src/core/services/dsp.cpp index ec1fb3b9..fa03a24f 100644 --- a/src/core/services/dsp.cpp +++ b/src/core/services/dsp.cpp @@ -344,7 +344,7 @@ void DSPService::printFirmwareInfo() { sha.CalculateDigest(hash.data(), loadedComponent.data(), firmwareSize); fmt::print("\nLoaded DSP firmware\n"); - fmt::print("DSP firmware hash: {:X}\n", fmt::join(hash, "")); + fmt::print("Firmware SHA-256 hash: {:X}\n", fmt::join(hash, "")); fmt::print("Size: {} bytes ({} KB)\n", firmwareSize, firmwareSize / 1024); bool knownFirmware = false; @@ -368,4 +368,4 @@ void DSPService::printFirmwareInfo() { } fmt::print("\n"); -} \ No newline at end of file +}