mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
compile fix linux
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2505 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -128,7 +128,7 @@ CISOProperties::CISOProperties(const std::string fileName, wxWindow* parent, wxW
|
||||
wxString name;
|
||||
CopySJISToString(name, OpenGameListItem->GetName(0).c_str());
|
||||
|
||||
SetTitle(wxString::Format(_("%s%s: %s - %s"), filename.c_str(), extension.c_str(), OpenGameListItem->GetUniqueID().c_str(), name));
|
||||
SetTitle(wxString::Format(_("%s%s: %s - %s"), filename.c_str(), extension.c_str(), OpenGameListItem->GetUniqueID().c_str(), name.c_str()));
|
||||
}
|
||||
|
||||
CISOProperties::~CISOProperties()
|
||||
@ -785,7 +785,7 @@ void CISOProperties::ChangeBannerDetails(int lang)
|
||||
CopySJISToString(description, OpenGameListItem->GetDescription(lang).c_str());
|
||||
|
||||
m_ShortName->SetValue(name);
|
||||
m_Maker->SetValue(OpenGameListItem->GetCompany().c_str());//dev too
|
||||
m_Maker->SetValue(wxString::FromAscii(OpenGameListItem->GetCompany().c_str()));//dev too
|
||||
m_Comment->SetValue(description);
|
||||
}
|
||||
|
||||
@ -836,4 +836,4 @@ bool CISOProperties::CopySJISToString( wxString& _rDestination, const char* _src
|
||||
//returnCode = true;
|
||||
#endif
|
||||
return returnCode;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user