diff options
author | Luca Barbieri <[email protected]> | 2010-08-21 23:53:39 +0200 |
---|---|---|
committer | Luca Barbieri <[email protected]> | 2010-08-21 23:53:39 +0200 |
commit | 4edeeaf71564582d5afebc9cb59f4b3f7fb40a7e (patch) | |
tree | 23d253d1cad15b725683a3a6fa81ebe734f44599 /src/gallium/drivers/nvfx/nvfx_vbo.c | |
parent | 251e48c64a37c4b05f26c96c5a1799c24da6474b (diff) |
nvfx: actually fix it properly
Diffstat (limited to 'src/gallium/drivers/nvfx/nvfx_vbo.c')
-rw-r--r-- | src/gallium/drivers/nvfx/nvfx_vbo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nvfx/nvfx_vbo.c b/src/gallium/drivers/nvfx/nvfx_vbo.c index b1a06654b64..21d6e0e6f84 100644 --- a/src/gallium/drivers/nvfx/nvfx_vbo.c +++ b/src/gallium/drivers/nvfx/nvfx_vbo.c @@ -433,7 +433,7 @@ nvfx_vtxelts_state_create(struct pipe_context *pipe, if(num_elements > 16) { - _debug_printf("Error: application attempted to use %u vertex elements, but only 16 are supported: ignoring the rest\n"); + _debug_printf("Error: application attempted to use %u vertex elements, but only 16 are supported: ignoring the rest\n", num_elements); num_elements = 16; } |