linux: Fix hotswapping CDVD message truncation

Iso, Plugin, and NoDisc were truncated to I, P, and N. Fix the issue.
This commit is contained in:
Jonathan Li 2016-06-06 23:23:00 +01:00
parent c530858df3
commit 9e9505a732
1 changed files with 2 additions and 1 deletions

View File

@ -211,7 +211,8 @@ wxWindowID SwapOrReset_CdvdSrc( wxWindow* owner, CDVD_SourceType newsrc )
if( result != wxID_RESET )
{
Console.Indent().WriteLn( L"(CdvdSource) HotSwapping CDVD source types from %s to %s.", CDVD_SourceLabels[oldsrc], CDVD_SourceLabels[newsrc] );
Console.Indent().WriteLn(L"(CdvdSource) HotSwapping CDVD source types from %s to %s.",
WX_STR(wxString(CDVD_SourceLabels[oldsrc])), WX_STR(wxString(CDVD_SourceLabels[newsrc])));
//CoreThread.ChangeCdvdSource();
sMainFrame.UpdateIsoSrcSelection();
core.AllowResume();