1
0
Fork 0

Small fix regarding character set of files being exported

Originally committed to SVN as r15.
This commit is contained in:
Rodrigo Braz Monteiro 2006-01-20 00:16:32 +00:00
parent e72d2c9f94
commit 59db7e90e1
1 changed files with 1 additions and 1 deletions

View File

@ -395,7 +395,7 @@ void AssFile::Save(wxString _filename,bool setfilename,bool addToRecent,const wx
void AssFile::Export(wxString _filename) {
AssExporter exporter(this);
exporter.AddAutoFilters();
exporter.Export(_filename);
exporter.Export(_filename,_T("UTF-8"));
}