From 721d8aad791ccefa2c1fb19bef288e1bd919d7c3 Mon Sep 17 00:00:00 2001 From: Niels Martin Hansen Date: Mon, 1 Jun 2009 15:29:22 +0000 Subject: [PATCH] Reword error messages introduced in r2998 to make it Aegisub's fault and not the graphics drivers'. Even if our code is technically correct, it's still our problem. Updates #799. Originally committed to SVN as r2999. --- aegisub/src/video_context.cpp | 4 ++-- aegisub/src/video_display.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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(); }