BIOS: Fix OpenBIOS initializer

This commit is contained in:
Stenzek 2024-10-05 12:18:46 +10:00
parent a83b642a2d
commit 2f331540b1
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ static constexpr const ImageInfo s_image_info_by_hash[] = {
// OpenBIOS is separate, because there's no fixed hash for it. So just in case something collides with a hash of zero...
// which would be unlikely.
static constexpr const ImageInfo s_openbios_info = {
"OpenBIOS", ConsoleRegion::Auto, {}, ImageInfo::FastBootPatch::Unsupported, 200};
"OpenBIOS", ConsoleRegion::Auto, false, ImageInfo::FastBootPatch::Unsupported, 200, {}};
static constexpr const char s_openbios_signature[] = {'O', 'p', 'e', 'n', 'B', 'I', 'O', 'S'};
static constexpr u32 s_openbios_signature_offset = 0x78;