mirror of https://github.com/mgba-emu/mgba.git
Qt: Add missing option for Wisdom Tree in overrides list
This commit is contained in:
parent
6a7bec5eec
commit
3062a6a2d7
1
CHANGES
1
CHANGES
|
@ -37,6 +37,7 @@ Other fixes:
|
|||
- Qt: Fix file handle leak on opening an invalid ROM
|
||||
- Qt: Fix a race condition in the frame inspector
|
||||
- Qt: Fix Italian RTC translation (fixes mgba.io/i/1798)
|
||||
- Qt: Add missing option for Wisdom Tree in overrides list
|
||||
- Util: Fix crash if PNG header fails to write
|
||||
Misc:
|
||||
- Debugger: Keep track of global cycle count
|
||||
|
|
|
@ -49,6 +49,7 @@ OverrideView::OverrideView(ConfigController* config, QWidget* parent)
|
|||
s_mbcList.append(GB_TAMA5);
|
||||
s_mbcList.append(GB_HuC1);
|
||||
s_mbcList.append(GB_HuC3);
|
||||
s_mbcList.append(GB_UNL_WISDOM_TREE);
|
||||
}
|
||||
if (s_gbModelList.isEmpty()) {
|
||||
// NB: Keep in sync with OverrideView.ui
|
||||
|
|
|
@ -354,6 +354,11 @@
|
|||
<string>HuC-3</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Wisdom Tree (Unlicensed)</string>
|
||||
</property>
|
||||
</item>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
|
|
Loading…
Reference in New Issue