From c2b479889c18ae6f970bb2d585699af58e781414 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Sun, 1 Dec 2024 00:06:40 +0200 Subject: [PATCH] Remove FirmwareInfo struct redeclaration --- src/core/services/dsp.cpp | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/core/services/dsp.cpp b/src/core/services/dsp.cpp index fa03a24f3..5d7956b51 100644 --- a/src/core/services/dsp.cpp +++ b/src/core/services/dsp.cpp @@ -317,19 +317,6 @@ void DSPService::triggerInterrupt1() { } } -struct FirmwareInfo { - using Hash = std::array; - - Hash hash; // Firmware hash (SHA-256) - u32 size; // Firmware size in bytes - - bool supportsAAC; // Does this firmware support AAC decoding? - const char* notes; // Miscellaneous notes about the firmware - - explicit constexpr FirmwareInfo(const Hash& hash, u32 size, bool supportsAAC, const char* notes) - : hash(hash), size(size), supportsAAC(supportsAAC), notes(notes) {} -}; - void DSPService::printFirmwareInfo() { // No component has been loaded, do nothing. if (!loadedComponent.size()) {