Fix photon blending mode

This commit is contained in:
Simon Robertshaw 2012-10-01 21:54:52 +01:00
parent 0e394ed62e
commit b98f5faace

View File

@ -132,7 +132,8 @@ int Element_PHOT::graphics(GRAPHICS_FUNC_ARGS)
*fireg = *colg;
*fireb = *colb;
*pixel_mode |= FIRE_ADD;
*pixel_mode &= ~PMODE_FLAT;
*pixel_mode |= FIRE_ADD | PMODE_ADD;
return 0;
}