From 7337a117455f3a8627940db53b4b6c053c5a8d52 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Thu, 3 Jun 2010 20:32:17 +0000 Subject: [PATCH] Explicitly set the charset to binary when loading subtitles from the video Originally committed to SVN as r4422. --- aegisub/src/frame_main_events.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/frame_main_events.cpp b/aegisub/src/frame_main_events.cpp index 9dc498ad1..c38bd2978 100644 --- a/aegisub/src/frame_main_events.cpp +++ b/aegisub/src/frame_main_events.cpp @@ -821,7 +821,7 @@ void FrameMain::OnOpenSubtitlesCharset(wxCommandEvent& WXUNUSED(event)) { /// @brief Open subtitles from the currently open video file void FrameMain::OnOpenSubtitlesVideo(wxCommandEvent&) { - LoadSubtitles(VideoContext::Get()->videoName); + LoadSubtitles(VideoContext::Get()->videoName, "binary"); }