Add Luigi's Mansion fw to db

This commit is contained in:
wheremyfoodat 2025-08-07 20:43:42 +03:00
commit 72e0acfcb5
2 changed files with 7 additions and 2 deletions

View file

@ -18,7 +18,7 @@ namespace DSP {
: hash(hash), size(size), supportsAAC(supportsAAC), notes(notes) {}
};
static constexpr std::array<FirmwareInfo, 9> firmwareDB = {
static constexpr std::array<FirmwareInfo, 10> firmwareDB = {
FirmwareInfo(
{0x47, 0xD6, 0x6C, 0xD2, 0x13, 0x1, 0xFF, 0x62, 0xAD, 0x16, 0x98, 0x2, 0x46, 0x67, 0xF3, 0x9,
0xDA, 0x7, 0x20, 0x9E, 0xFB, 0xB, 0x6A, 0x81, 0x98, 0xFF, 0x9B, 0xE0, 0x51, 0x67, 0xC9, 0xA6},
@ -72,5 +72,11 @@ namespace DSP {
0x3A, 0x29, 0x1, 0x70, 0xEA, 0x3B, 0x6C, 0x14, 0x57, 0x49, 0xAD, 0x93, 0x58, 0x67, 0x2C, 0x97},
49716, false, "Spotted in PMD: GTI"
),
FirmwareInfo(
{0x96, 0xF3, 0x96, 0x28, 0x38, 0xEB, 0xE9, 0x2A, 0x9E, 0x99, 0xD0, 0xB0, 0x78, 0xAD, 0xE3, 0x67,
0x3B, 0x9B, 0x2F, 0x24, 0x3E, 0xBE, 0xC0, 0x47, 0x4D, 0x3E, 0x49, 0xA9, 0x2B, 0x65, 0x5B, 0x85},
49772, false, "Spotted in Luigi's Mansion"
),
};
} // namespace DSP

View file

@ -4,7 +4,6 @@
#include <fmt/format.h>
#include <fmt/ranges.h>
#include <algorithm>
#include <cstring>
#include <fstream>