From 1a2cb1cb74e882f5775645b2740e28111a314dfe Mon Sep 17 00:00:00 2001 From: Peter Piwowarski Date: Thu, 11 Apr 2019 12:54:15 -0400 Subject: [PATCH] Correct iNES IDs for UxROM/CNROM This fixes dumping the one UNROM cartridge (Jordan Vs. Bird) to which I have access. I do not have access to any CNROM carts to test. --- shared/shared_dict_buffer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shared/shared_dict_buffer.h b/shared/shared_dict_buffer.h index 15a87e3..d2433bd 100644 --- a/shared/shared_dict_buffer.h +++ b/shared/shared_dict_buffer.h @@ -152,8 +152,8 @@ //operand MSB mapper #define NROM 0 #define MMC1 1 - #define CNROM 2 - #define UxROM 3 + #define UxROM 2 + #define CNROM 3 #define MMC3 4 #define MMC5 5 #define AxROM 7