From c6734c95d020bdf380270f4c2b084447d3bc8dac Mon Sep 17 00:00:00 2001 From: negativeExponent Date: Wed, 9 Feb 2022 18:08:39 +0800 Subject: [PATCH] Check database for NES 1.0 headered rom only This would assume that all NES 2.0 roms are correct and is more complete that what is provided in overrides. --- src/ines.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ines.c b/src/ines.c index 52fe24a..0903fc2 100644 --- a/src/ines.c +++ b/src/ines.c @@ -1044,7 +1044,9 @@ int iNESLoad(const char *name, FCEUFILE *fp) SetupCartPRGMapping(0, ROM, rom_size_pow2, 0); SetInput(); - CheckHInfo(); + + if (iNESCart.iNES2 < 1) + CheckHInfo(); { int x;