NstCartridge: Disable checking container format when loading official releases

This commit is contained in:
Rupert Carmichael
2024-06-22 12:07:17 -04:00
parent 2faefc52d7
commit 1fc8c32b91

View File

@@ -91,8 +91,9 @@ namespace Nes
case 0x0000: case 0x0000:
// Check for VC/NES Remix container for cartridge-based games // Check for VC/NES Remix container for cartridge-based games
if (((Stream::In(&context.stream).Peek64() >> 32) & 0xFF) == 0x60) // Just load the game for now, until more is known about the container format.
{ //if (((Stream::In(&context.stream).Peek64() >> 32) & 0xFF) & 0x60)
//{
Ines::Load Ines::Load
( (
context.stream, context.stream,
@@ -106,7 +107,7 @@ namespace Nes
profileEx, profileEx,
context.database context.database
); );
} //}
break; break;
default: default: