Qt: Update mapper list

This commit is contained in:
Vicki Pfau 2022-10-16 01:30:24 -07:00
parent ffda3e1c9b
commit 5415cd72e2
2 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,6 @@
0.11.0: (Future) 0.11.0: (Future)
Features: Features:
- New unlicensed GB mapper: NT (older types 1 and 2) - New unlicensed GB mappers: NT (older types 1 and 2), Li Cheng
Other fixes: Other fixes:
- Qt: Manually split filename to avoid overzealous splitting (fixes mgba.io/i/2681) - Qt: Manually split filename to avoid overzealous splitting (fixes mgba.io/i/2681)
- Qt: Expand criteria for tag branch names (fixes mgba.io/i/2679) - Qt: Expand criteria for tag branch names (fixes mgba.io/i/2679)

View File

@ -36,10 +36,13 @@ static const QList<GBMemoryBankControllerType> s_mbcList{
GB_UNL_WISDOM_TREE, GB_UNL_WISDOM_TREE,
GB_UNL_PKJD, GB_UNL_PKJD,
GB_UNL_NT_OLD_1, GB_UNL_NT_OLD_1,
GB_UNL_NT_OLD_2,
GB_UNL_NT_NEW, GB_UNL_NT_NEW,
GB_UNL_BBD, GB_UNL_BBD,
GB_UNL_HITEK, GB_UNL_HITEK,
GB_UNL_LI_CHENG,
GB_UNL_SACHEN_MMC1, GB_UNL_SACHEN_MMC1,
GB_UNL_SACHEN_MMC2,
}; };
static QMap<GBModel, QString> s_gbModelNames; static QMap<GBModel, QString> s_gbModelNames;
@ -89,10 +92,12 @@ QString GameBoy::mbcName(GBMemoryBankControllerType mbc) {
s_mbcNames[GB_TAMA5] = tr("TAMA5"); s_mbcNames[GB_TAMA5] = tr("TAMA5");
s_mbcNames[GB_UNL_WISDOM_TREE] = tr("Wisdom Tree"); s_mbcNames[GB_UNL_WISDOM_TREE] = tr("Wisdom Tree");
s_mbcNames[GB_UNL_NT_OLD_1] = tr("NT (old 1)"); s_mbcNames[GB_UNL_NT_OLD_1] = tr("NT (old 1)");
s_mbcNames[GB_UNL_NT_OLD_2] = tr("NT (old 2)");
s_mbcNames[GB_UNL_NT_NEW] = tr("NT (new)"); s_mbcNames[GB_UNL_NT_NEW] = tr("NT (new)");
s_mbcNames[GB_UNL_PKJD] = tr("Pokémon Jade/Diamond"); s_mbcNames[GB_UNL_PKJD] = tr("Pokémon Jade/Diamond");
s_mbcNames[GB_UNL_BBD] = tr("BBD"); s_mbcNames[GB_UNL_BBD] = tr("BBD");
s_mbcNames[GB_UNL_HITEK] = tr("Hitek"); s_mbcNames[GB_UNL_HITEK] = tr("Hitek");
s_mbcNames[GB_UNL_LI_CHENG] = tr("Li Cheng");
s_mbcNames[GB_UNL_SACHEN_MMC1] = tr("Sachen (MMC1)"); s_mbcNames[GB_UNL_SACHEN_MMC1] = tr("Sachen (MMC1)");
s_mbcNames[GB_UNL_SACHEN_MMC2] = tr("Sachen (MMC2)"); s_mbcNames[GB_UNL_SACHEN_MMC2] = tr("Sachen (MMC2)");
} }