mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
Remove FirmwareInfo struct redeclaration
This commit is contained in:
parent
713e19a4a1
commit
c2b479889c
1 changed files with 0 additions and 13 deletions
|
@ -317,19 +317,6 @@ void DSPService::triggerInterrupt1() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
struct FirmwareInfo {
|
|
||||||
using Hash = std::array<u8, 32>;
|
|
||||||
|
|
||||||
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() {
|
void DSPService::printFirmwareInfo() {
|
||||||
// No component has been loaded, do nothing.
|
// No component has been loaded, do nothing.
|
||||||
if (!loadedComponent.size()) {
|
if (!loadedComponent.size()) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue