Navigation Menu

Skip to content

Commit

Permalink
Minor syntax OCD.
Browse files Browse the repository at this point in the history
--HG--
branch : trunk
  • Loading branch information
icculus committed Jun 29, 2008
1 parent 32ba05f commit cbf3f52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mojoshader.c
Expand Up @@ -3977,7 +3977,7 @@ static void emit_ARB1_const_array(Context *ctx, const ConstantsList *clist,
floatstr(ctx, val3, sizeof (val3), clist->constant.value.f[3], 1);

output_line(ctx, "{ %s, %s, %s, %s }%s", val0, val1, val2, val3,
(i < size-1) ? "," : "");
(i < (size-1)) ? "," : "");

ctx->scratchidx = origscratch;
clist = clist->next;
Expand Down

0 comments on commit cbf3f52

Please sign in to comment.