diff --git a/aegisub/src/video_context.cpp b/aegisub/src/video_context.cpp index 0be0e44c8..e74ec54df 100644 --- a/aegisub/src/video_context.cpp +++ b/aegisub/src/video_context.cpp @@ -438,7 +438,7 @@ void VideoContext::JumpToFrame(int n) { catch (const wxChar *err) { wxLogError( _T("Failed seeking video. The video will be closed because of this.\n") - _T("If you get this error regardless of which video file you use, and also if you use dummy video, your OpenGL driver might not work with Aegisub.\n") + _T("If you get this error regardless of which video file you use, and also if you use dummy video, Aegisub might not work with your graphics card's OpenGL driver.\n") _T("Error message reported: %s"), err); Reset(); @@ -446,7 +446,7 @@ void VideoContext::JumpToFrame(int n) { catch (...) { wxLogError( _T("Failed seeking video. The video will be closed because of this.\n") - _T("If you get this error regardless of which video file you use, and also if you use dummy video, your OpenGL driver might not work with Aegisub.\n") + _T("If you get this error regardless of which video file you use, and also if you use dummy video, Aegisub might not work with your graphics card's OpenGL driver.\n") _T("No further error message given.")); Reset(); } diff --git a/aegisub/src/video_display.cpp b/aegisub/src/video_display.cpp index c0452fa43..bc09ef752 100644 --- a/aegisub/src/video_display.cpp +++ b/aegisub/src/video_display.cpp @@ -313,7 +313,7 @@ try { catch (const wxChar *err) { wxLogError( _T("An error occurred trying to render the video frame to screen.\n") - _T("If you get this error regardless of which video file you use, and also if you use dummy video, your OpenGL driver might not work with Aegisub.\n") + _T("If you get this error regardless of which video file you use, and also if you use dummy video, Aegisub might not work with your graphics card's OpenGL driver.\n") _T("Error message reported: %s"), err); VideoContext::Get()->Reset(); @@ -321,7 +321,7 @@ catch (const wxChar *err) { catch (...) { wxLogError( _T("An error occurred trying to render the video frame to screen.\n") - _T("If you get this error regardless of which video file you use, and also if you use dummy video, your OpenGL driver might not work with Aegisub.\n") + _T("If you get this error regardless of which video file you use, and also if you use dummy video, Aegisub might not work with your graphics card's OpenGL driver.\n") _T("No further error message given.")); VideoContext::Get()->Reset(); }