Fixed build for Unicode version of wx.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@576 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
cbd945b137
commit
0bf262cc16
|
@ -555,7 +555,7 @@ void CGameListCtrl::OnCompressGCM(wxCommandEvent& WXUNUSED (event)) {
|
||||||
{
|
{
|
||||||
path = wxFileSelector(
|
path = wxFileSelector(
|
||||||
_T("Save decompressed ISO"),
|
_T("Save decompressed ISO"),
|
||||||
wxEmptyString, FileName.c_str(), wxEmptyString,
|
wxEmptyString, wxString::FromAscii(FileName.c_str()), wxEmptyString,
|
||||||
wxString::Format
|
wxString::Format
|
||||||
(
|
(
|
||||||
_T("All GC/Wii ISO files (gcm)|*.gcm|All files (%s)|%s"),
|
_T("All GC/Wii ISO files (gcm)|*.gcm|All files (%s)|%s"),
|
||||||
|
@ -574,7 +574,7 @@ void CGameListCtrl::OnCompressGCM(wxCommandEvent& WXUNUSED (event)) {
|
||||||
{
|
{
|
||||||
path = wxFileSelector(
|
path = wxFileSelector(
|
||||||
_T("Save compressed ISO"),
|
_T("Save compressed ISO"),
|
||||||
wxEmptyString, FileName.c_str(), wxEmptyString,
|
wxEmptyString, wxString::FromAscii(FileName.c_str()), wxEmptyString,
|
||||||
wxString::Format
|
wxString::Format
|
||||||
(
|
(
|
||||||
_T("All compressed GC/Wii ISO files (gcz)|*.gcz|All files (%s)|%s"),
|
_T("All compressed GC/Wii ISO files (gcz)|*.gcz|All files (%s)|%s"),
|
||||||
|
|
Loading…
Reference in New Issue