From 51d17d60ac57dda905dc8b08e3fbd604ad56a003 Mon Sep 17 00:00:00 2001 From: Alexey 'Cluster' Avdyukhin Date: Fri, 23 Dec 2022 20:28:56 +0400 Subject: Mapper 083:1 --- tools_sources/CoolgirlCombiner/Game.cs | 2 +- tools_sources/CoolgirlCombiner/coolgirl-mappers.json | 2 +- tools_sources/CoolgirlCombiner/nes-fixes.json | 8 ++++++++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/tools_sources/CoolgirlCombiner/Game.cs b/tools_sources/CoolgirlCombiner/Game.cs index 706f464..2d52f31 100644 --- a/tools_sources/CoolgirlCombiner/Game.cs +++ b/tools_sources/CoolgirlCombiner/Game.cs @@ -104,7 +104,7 @@ namespace com.clusterrr.Famicom.Multirom PRG = nesFile.PRG; CHR = nesFile.CHR; Battery = nesFile.Battery; - Mapper = $"{nesFile.Mapper:D3}" + ((nesFile.Submapper > 0) ? $":{nesFile.Submapper}" : ""); + Mapper = $"{nesFile.Mapper:D3}" + ((nesFile.Submapper > 0) ? $".{nesFile.Submapper}" : ""); Mirroring = nesFile.Mirroring; ContainerType = NesContainerType.iNES; Trained = nesFile.Trainer != null && nesFile.Trainer.Length > 0; diff --git a/tools_sources/CoolgirlCombiner/coolgirl-mappers.json b/tools_sources/CoolgirlCombiner/coolgirl-mappers.json index b12438b..76ae9aa 100644 --- a/tools_sources/CoolgirlCombiner/coolgirl-mappers.json +++ b/tools_sources/CoolgirlCombiner/coolgirl-mappers.json @@ -407,7 +407,7 @@ "prg_bank_a": 0, "chr_ram_banking": false }, - "083:1": { + "083.1": { "description": "Cony/Yoko, CHR=512KiB", "mapper_register": 35, "prg_mode": 4, diff --git a/tools_sources/CoolgirlCombiner/nes-fixes.json b/tools_sources/CoolgirlCombiner/nes-fixes.json index a6f9cf0..810755c 100644 --- a/tools_sources/CoolgirlCombiner/nes-fixes.json +++ b/tools_sources/CoolgirlCombiner/nes-fixes.json @@ -1309,5 +1309,13 @@ "836c0ff4f3e06e45": { "description": "Zelda 2", "battery": true + }, + "3cd012af323d1892": { + "description": "World Heroes 2 (Unl) [!].nes", + "mapper": "083.1" + }, + "258417c331a7220e": { + "description": "World Heroes 2 Pro (Ch).nes", + "mapper": "083.1" } } \ No newline at end of file -- cgit v1.2.3