diff options
author | Corbin Simpson <[email protected]> | 2010-09-19 18:14:41 -0700 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2010-09-19 18:25:02 -0700 |
commit | 07b9e22a1f587026672a00a31cebaef5aae964c6 (patch) | |
tree | 34ceb702a85d283f49325a5582bd905d8787f4dd /src/gallium/drivers/r600/r600_draw.c | |
parent | eb347c7ef06a39b86c6de7c93417b6b90baf0300 (diff) |
r600g: Fix false and true.
Diffstat (limited to 'src/gallium/drivers/r600/r600_draw.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_draw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_draw.c b/src/gallium/drivers/r600/r600_draw.c index ca205932bd9..51c9b065494 100644 --- a/src/gallium/drivers/r600/r600_draw.c +++ b/src/gallium/drivers/r600/r600_draw.c @@ -156,7 +156,7 @@ void r600_draw_vbo(struct pipe_context *ctx, const struct pipe_draw_info *info) if (rctx->any_user_vbs) { r600_upload_user_buffers(rctx); - rctx->any_user_vbs = false; + rctx->any_user_vbs = FALSE; } draw.ctx = ctx; |