From 15eb4dc29da1793514022944da28ca25f1a88153 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Tue, 17 Apr 2012 15:03:27 +0000 Subject: [PATCH] Fix bad option name that caused a fatal error on startup for clean installs Originally committed to SVN as r6709. --- aegisub/src/video_context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/video_context.cpp b/aegisub/src/video_context.cpp index 35ddb5a09..a2f56cd5c 100644 --- a/aegisub/src/video_context.cpp +++ b/aegisub/src/video_context.cpp @@ -94,7 +94,7 @@ VideoContext::VideoContext() OPT_SUB("Provider/Video/FFmpegSource/Decoding Threads", &VideoContext::Reload, this); OPT_SUB("Provider/Video/FFmpegSource/Unsafe Seeking", &VideoContext::Reload, this); - OPT_SUB("Provider/Video/FFmpegSource/Force BT.601", &VideoContext::Reload, this); + OPT_SUB("Video/Force BT.601", &VideoContext::Reload, this); } VideoContext::~VideoContext () {