From c749debec61345f5abbbcd67076a41d7b722db6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20D=C3=B6singer?= Date: Tue, 29 Sep 2009 17:43:44 +0200 Subject: [PATCH] wined3d: Fix an error string. --- dlls/wined3d/directx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/wined3d/directx.c b/dlls/wined3d/directx.c index 8eac47ca99d..5d494ecb0f7 100644 --- a/dlls/wined3d/directx.c +++ b/dlls/wined3d/directx.c @@ -693,7 +693,7 @@ static BOOL match_broken_nv_clip(const struct wined3d_gl_info *gl_info, const ch GL_EXTCALL(glGenProgramsARB(1, &prog)); if(!prog) { - ERR("Failed to create an ARB offset limit test program\n"); + ERR("Failed to create the NVvp clip test program\n"); LEAVE_GL(); return FALSE; }