wined3d: Fix ARB_0001 with pixel shaders in arb_get_helper_value().

This commit is contained in:
Henri Verbeet 2011-04-03 23:35:32 +02:00 committed by Alexandre Julliard
parent 358f14ee20
commit 6aa02f11ea
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ static const char *arb_get_helper_value(enum wined3d_shader_type shader, enum ar
case ARB_ZERO: return "ps_helper_const.x";
case ARB_ONE: return "ps_helper_const.y";
case ARB_TWO: return "coefmul.x";
case ARB_0001: return "helper_const.xxxy";
case ARB_0001: return "ps_helper_const.xxxy";
case ARB_EPS: return "ps_helper_const.z";
default: break;
}