mirror of
https://github.com/libretro/nestopia.git
synced 2025-10-14 18:58:25 +08:00
NstCartridge: Disable checking container format when loading official releases
This commit is contained in:
@@ -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:
|
||||||
|
Reference in New Issue
Block a user