diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2011-10-28 23:11:27 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2011-10-28 23:11:27 (GMT) |
| commit | a7191ce9e7621a4cbded534b17246cd910db6734 (patch) | |
| tree | 8fe36dbeea8c449efa5b8c027b3a5c66744a1cec /src/graphics.c | |
| parent | e46f26684bfbe82734ad4716e45ebb1a94075a69 (diff) | |
| download | powder-a7191ce9e7621a4cbded534b17246cd910db6734.zip powder-a7191ce9e7621a4cbded534b17246cd910db6734.tar.gz | |
Whoops, fix PMODE_BLEND to use correct function, also fix BRAY del mode
Diffstat (limited to 'src/graphics.c')
| -rw-r--r-- | src/graphics.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphics.c b/src/graphics.c index 7dcf130..9316cae 100644 --- a/src/graphics.c +++ b/src/graphics.c @@ -1896,7 +1896,7 @@ void render_parts(pixel *vid) flatC[cflatC++] = ((float)cola)/255.0f; cflat++; #else - addpixel(vid, nx, ny, colr, colg, colb, cola); + blendpixel(vid, nx, ny, colr, colg, colb, cola); #endif } if(pixel_mode & PMODE_ADD) |
