Skip to content

Commit

Permalink
[svn] Doh. Fixed DEFB output in the D3D profile.
Browse files Browse the repository at this point in the history
--HG--
branch : trunk
  • Loading branch information
icculus committed Mar 21, 2008
1 parent b8a5e7e commit c4e14f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion d3d2glsl.c
Expand Up @@ -977,7 +977,7 @@ static void emit_D3D_DEFI(Context *ctx)
static void emit_D3D_DEFB(Context *ctx)
{
const char *dst0 = make_D3D_destarg_string(ctx, 0);
output_line(ctx, "defb%s, %s", dst0, ctx->dwords ? "true" : "false");
output_line(ctx, "defb%s, %s", dst0, ctx->dwords[0] ? "true" : "false");
} // emit_D3D_DEFB


Expand Down

0 comments on commit c4e14f2

Please sign in to comment.