r200: Fix probable thinko in r200EmitArrays

Effectively this path would always assert.  Move the break statement to
the (probable) intended place.

Note: This is a candidate for the stable branches.

Signed-off-by: Adam Jackson <ajax@redhat.com>
Reviewed-by: Roland Scheidegger <sroland@vmware.com>
This commit is contained in:
Adam Jackson 2013-01-04 14:26:20 -05:00 committed by Andreas Boll
parent 1b8adabe2e
commit 06f3a1f792

View file

@ -166,8 +166,9 @@ void r200EmitArrays( struct gl_context *ctx, GLubyte *vimap_rev )
/* fallthrough */
case 4:
vfmt0 |= R200_VTX_W1;
break;
/* fallthrough */
}
break;
default:
assert(0);
emitsize = 0;