From 6f29cc7105bc29514c758a7aa7123679c9ad81d0 Mon Sep 17 00:00:00 2001 From: Rodrigo Braz Monteiro Date: Thu, 10 Jan 2008 23:22:49 +0000 Subject: [PATCH] Small fix to last commit Originally committed to SVN as r1674. --- aegisub/video_context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/video_context.cpp b/aegisub/video_context.cpp index 09b3971c9..6b32f89e1 100644 --- a/aegisub/video_context.cpp +++ b/aegisub/video_context.cpp @@ -628,7 +628,7 @@ void VideoContext::SaveSnapshot(bool raw) { // Is it a path specifier and not an actual fixed path? if (option[0] == _T('?')) { // If dummy video is loaded, we can't save to the video location - if (option.StartsWith(_T("?video")) && (videoName.Find(_T("?dummy")) != wxString::wxNOT_FOUND)) { + if (option.StartsWith(_T("?video")) && (videoName.Find(_T("?dummy")) != wxNOT_FOUND)) { // So try the script location instead option = _T("?script"); }