mirror of
https://github.com/libretro/pcsx2.git
synced 2025-03-05 16:09:43 +00:00
Merge pull request #401 from PCSX2/unicode-mess
pcsx2:wx3: fix filter selection of iso
This commit is contained in:
commit
da969ffaeb
@ -228,12 +228,12 @@ static wxString JoinFiletypes( const wxChar** src )
|
||||
if( !dest.IsEmpty() )
|
||||
dest += L";";
|
||||
|
||||
dest += pxsFmt(L"*.%s", *src);
|
||||
dest += pxsFmt(L"*.%ls", *src);
|
||||
|
||||
if (wxFileName::IsCaseSensitive())
|
||||
{
|
||||
// omgosh! the filesystem is CaSE SeNSiTiVE!!
|
||||
dest += pxsFmt(L";*.%s", *src).ToUpper();
|
||||
dest += pxsFmt(L";*.%ls", *src).ToUpper();
|
||||
}
|
||||
|
||||
++src;
|
||||
|
Loading…
x
Reference in New Issue
Block a user