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:
Jonathan Li 2017-01-31 21:47:07 +00:00
parent c65e467c83
commit af38b8bf97
2 changed files with 2 additions and 2 deletions

View File

@ -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[] =