summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-03 11:47:07 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-03 11:47:07 +0000
commit406a602ecc8d73f4cc1125092eee285743ad4a61 (patch)
treea9f792149045b2c7112779302326df5d3e985d69
parent9b8170ca5453ab008f08a1b6c6a08ae61c9283d5 (diff)
downloadmpv-406a602ecc8d73f4cc1125092eee285743ad4a61.tar.bz2
mpv-406a602ecc8d73f4cc1125092eee285743ad4a61.tar.xz
Add [gl] in front of vo_gl message
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28459 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--libvo/vo_gl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/vo_gl.c b/libvo/vo_gl.c
index a692d1573d..334b724e07 100644
--- a/libvo/vo_gl.c
+++ b/libvo/vo_gl.c
@@ -416,7 +416,7 @@ static void autodetectGlExtensions(void) {
if (force_pbo == -1) force_pbo = strstr(extensions, "_pixel_buffer_object") ? is_ati : 0;
if (use_rectangle == -1) use_rectangle = strstr(extensions, "_texture_non_power_of_two") ? 0 : 0;
if (is_ati && (lscale == 1 || lscale == 2 || cscale == 1 || cscale == 2))
- mp_msg(MSGT_VO, MSGL_WARN, "Selected scaling mode may be broken on ATI cards.\n"
+ mp_msg(MSGT_VO, MSGL_WARN, "[gl] Selected scaling mode may be broken on ATI cards.\n"
"Tell _them_ to fix GL_REPEAT if you have issues.\n");
mp_msg(MSGT_VO, MSGL_V, "[gl] Settings after autodetection: ati-hack = %i, force-pbo = %i, rectangle = %i\n",
ati_hack, force_pbo, use_rectangle);