From 7b110725d1bc83aaf3d013d937245c774babd086 Mon Sep 17 00:00:00 2001 From: Niels Martin Hansen Date: Sun, 20 Jul 2008 13:45:10 +0000 Subject: [PATCH] Oops, r2270 broke the build, missing a backslash in a string. Originally committed to SVN as r2271. --- aegisub/subtitle_format_transtation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/subtitle_format_transtation.cpp b/aegisub/subtitle_format_transtation.cpp index 6cf260078..6e973c98e 100644 --- a/aegisub/subtitle_format_transtation.cpp +++ b/aegisub/subtitle_format_transtation.cpp @@ -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;