mirror of https://github.com/odrling/Aegisub
Oops, r2270 broke the build, missing a backslash in a string.
Originally committed to SVN as r2271.
This commit is contained in:
parent
30a9bdc17c
commit
7b110725d1
|
@ -104,7 +104,7 @@ void TranStationSubtitleFormat::WriteFile(wxString _filename,wxString encoding)
|
||||||
|
|
||||||
// Hack: If an italics-tag (\i1) appears anywhere in the line,
|
// Hack: If an italics-tag (\i1) appears anywhere in the line,
|
||||||
// make it all italics
|
// 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
|
// Write header
|
||||||
AssTime start = current->Start;
|
AssTime start = current->Start;
|
||||||
|
|
Loading…
Reference in New Issue