diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2011-10-20 15:51:38 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2011-10-20 15:51:38 (GMT) |
| commit | eaafcaeecc008577834acf56f43b122030cc056b (patch) | |
| tree | 22df0eacc85c3bedbb080211859f1f4715ba775c /src | |
| parent | 09d3cacf9cb3ee0098df6d0ea34dc39b608f6931 (diff) | |
| download | powder-eaafcaeecc008577834acf56f43b122030cc056b.zip powder-eaafcaeecc008577834acf56f43b122030cc056b.tar.gz | |
Better fire for Non-Fire display modes
Diffstat (limited to 'src')
| -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 61865d7..475899d 100644 --- a/src/graphics.c +++ b/src/graphics.c @@ -1539,7 +1539,7 @@ void render_parts(pixel *vid) case CM_PRESS: case CM_LIFE: case CM_GRAD: - if(pixel_mode & FIRE_ADD) pixel_mode = (pixel_mode & ~FIRE_ADD) | PMODE_GLOW; + if(pixel_mode & FIRE_ADD) pixel_mode = (pixel_mode & ~FIRE_ADD) | PMODE_GLOW | PMODE_FLAT; if(pixel_mode & FIRE_BLEND) pixel_mode = (pixel_mode & ~FIRE_BLEND) | PMODE_BLUR; case CM_FIRE: if(pixel_mode & PMODE_BLOB) pixel_mode = (pixel_mode & ~PMODE_BLOB) | PMODE_FLAT; |
