mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-12-26 03:41:55 +01:00
* Display only useful informations in about menu
This commit is contained in:
parent
b8da744d09
commit
bfa754668d
@ -166,5 +166,17 @@ void CMenu::_textAbout(void)
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
m_btnMgr.setText(m_aboutLblIOS, wfmt(_fmt("ios", L"IOS%i base %i v%i"), CurrentIOS.Version, CurrentIOS.Base, CurrentIOS.Revision), true);
|
switch(IOS_GetType(CurrentIOS.Version))
|
||||||
|
{
|
||||||
|
case IOS_TYPE_D2X:
|
||||||
|
case IOS_TYPE_WANIN:
|
||||||
|
case IOS_TYPE_HERMES:
|
||||||
|
case IOS_TYPE_KWIIRK:
|
||||||
|
m_btnMgr.setText(m_aboutLblIOS, wfmt(_fmt("ios", L"IOS%i base %i v%i"), CurrentIOS.Version, CurrentIOS.Base, CurrentIOS.Revision), true);
|
||||||
|
break;
|
||||||
|
case IOS_TYPE_NEEK2O:
|
||||||
|
case IOS_TYPE_NORMAL_IOS:
|
||||||
|
m_btnMgr.setText(m_aboutLblIOS, wfmt( L"IOS%i v%i", CurrentIOS.Version, CurrentIOS.Revision), true);
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user