Browse Source

Fix error string

tags/mesa_7_1_rc1
Alan Hourihane 17 years ago
parent
commit
936dba1de5
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      src/mesa/shader/prog_execute.c

+ 2
- 1
src/mesa/shader/prog_execute.c View File

@@ -1520,8 +1520,9 @@ _mesa_execute_program(GLcontext * ctx,
case OPCODE_END:
return GL_TRUE;
default:
_mesa_problem(ctx, "Bad opcode %d in _mesa_exec_fragment_program",
_mesa_problem(ctx, "Bad opcode %d in _mesa_execute_program",
inst->Opcode);
assert(0);
return GL_TRUE; /* return value doesn't matter */

}

Loading…
Cancel
Save