- fixed 2 recent mistakes. the translation 'auto' and the results of nand extraction should now clear. issues #340 and #341.

This commit is contained in:
Fledge68 2023-03-12 17:36:25 -05:00
parent 2e3a862450
commit aceb49ceb8
3 changed files with 4 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 MiB

After

Width:  |  Height:  |  Size: 4.4 MiB

View File

@ -111,7 +111,7 @@ void CMenu::_Boot(void)
if(cur_ios > 0) if(cur_ios > 0)
m_btnMgr.setText(m_configLbl2Val, wfmt(L"%i", cur_ios)); m_btnMgr.setText(m_configLbl2Val, wfmt(L"%i", cur_ios));
else else
m_btnMgr.setText(m_configLbl2Val, L"AUTO"); m_btnMgr.setText(m_configLbl2Val, _t("GC_Auto", L"AUTO"));
} }
else if(m_btnMgr.selected(m_configBtn3)) else if(m_btnMgr.selected(m_configBtn3))
{ {

View File

@ -343,6 +343,9 @@ int CMenu::_NandEmuCfg(void)
if(BTN_HOME_PRESSED || BTN_B_PRESSED || (BTN_A_PRESSED && m_btnMgr.selected(m_nandemuBtnBack))) if(BTN_HOME_PRESSED || BTN_B_PRESSED || (BTN_A_PRESSED && m_btnMgr.selected(m_nandemuBtnBack)))
{ {
_hideNandEmu(); _hideNandEmu();
m_btnMgr.hide(m_nandfileLblDialog);
m_btnMgr.hide(m_nandemuLblDialog);
m_btnMgr.hide(m_nandfinLblDialog);
nandemuPage = 1; nandemuPage = 1;
_showNandEmu(); _showNandEmu();
break; break;