From ca78774fc71aa0197c451e924588ad77693447c9 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 18 May 2001 22:10:49 +0000 Subject: fixed a bad error string in ClientActiveTexture() --- src/mesa/main/texstate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mesa/main/texstate.c') diff --git a/src/mesa/main/texstate.c b/src/mesa/main/texstate.c index 321628e99c..2a4a9a9f96 100644 --- a/src/mesa/main/texstate.c +++ b/src/mesa/main/texstate.c @@ -1,4 +1,4 @@ -/* $Id: texstate.c,v 1.49 2001/05/17 21:33:14 brianp Exp $ */ +/* $Id: texstate.c,v 1.50 2001/05/18 22:10:49 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -2032,7 +2032,7 @@ _mesa_ClientActiveTextureARB( GLenum target ) ASSERT_OUTSIDE_BEGIN_END(ctx); if (texUnit > ctx->Const.MaxTextureUnits) { - _mesa_error(ctx, GL_INVALID_ENUM, "glActiveTextureARB(target)"); + _mesa_error(ctx, GL_INVALID_ENUM, "glClientActiveTextureARB(target)"); return; } -- cgit v1.2.3