Oops, r2270 broke the build, missing a backslash in a string.

Originally committed to SVN as r2271.
This commit is contained in:
Niels Martin Hansen 2008-07-20 13:45:10 +00:00
parent 30a9bdc17c
commit 7b110725d1
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ void TranStationSubtitleFormat::WriteFile(wxString _filename,wxString encoding)
// Hack: If an italics-tag (\i1) appears anywhere in the line,
// make it all italics
if (current->Text.Find(_T("\i1")) != wxNOT_FOUND)type = _T("I");
if (current->Text.Find(_T("\\i1")) != wxNOT_FOUND)type = _T("I");
// Write header
AssTime start = current->Start;