Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed incorrect variable reference.
  • Loading branch information
icculus committed Mar 19, 2011
1 parent 1fb7836 commit a14448f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mojoshader_compiler.c
Expand Up @@ -5772,7 +5772,7 @@ static void print_ir(FILE *io, unsigned int depth, void *_ir)

case MOJOSHADER_IR_CJUMP:
fprintf(io, "CJUMP ");
switch (ir->expr.binop.op)
switch (ir->stmt.cjump.cond)
{
#define PRINT_IR_COND(x) \
case MOJOSHADER_IR_COND_##x: fprintf(io, #x); break;
Expand Down

0 comments on commit a14448f

Please sign in to comment.