mirror of https://github.com/PCSX2/pcsx2.git
pcsx2: Avoid having to translate the same strings twice
Both strings have almost identical strings present elsewhere in the code, the only difference being that they use one less space.
This commit is contained in:
parent
c65e467c83
commit
af38b8bf97
|
@ -109,7 +109,7 @@ Panels::AdvancedOptionsVU::AdvancedOptionsVU( wxWindow* parent )
|
||||||
Panels::CpuPanelEE::CpuPanelEE( wxWindow* parent )
|
Panels::CpuPanelEE::CpuPanelEE( wxWindow* parent )
|
||||||
: BaseApplicableConfigPanel_SpecificConfig( parent )
|
: BaseApplicableConfigPanel_SpecificConfig( parent )
|
||||||
{
|
{
|
||||||
*this += Text( pxE( L"Notice: Most games are fine with the default options. ")
|
*this += Text( pxE(L"Notice: Most games are fine with the default options.")
|
||||||
) | StdExpand();
|
) | StdExpand();
|
||||||
|
|
||||||
const RadioPanelItem tbl_CpuTypes_EE[] =
|
const RadioPanelItem tbl_CpuTypes_EE[] =
|
||||||
|
|
Loading…
Reference in New Issue