Skip to content

Instantly share code, notes, and snippets.

@x2048
Last active July 13, 2022 20:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save x2048/1beac4faa4c8482362dd7d4ada7048b4 to your computer and use it in GitHub Desktop.
Save x2048/1beac4faa4c8482362dd7d4ada7048b4 to your computer and use it in GitHub Desktop.
patch 20220713
diff --git a/src/client/particles.cpp b/src/client/particles.cpp
index a1de1bb98..818cdc8cc 100644
--- a/src/client/particles.cpp
+++ b/src/client/particles.cpp
@@ -63,12 +63,6 @@ Particle::Particle(
: ParticleParamTypes::BlendMode::alpha;
switch (blendmode) {
- case ParticleParamTypes::BlendMode::alpha:
- bfsrc = video::EBF_SRC_ALPHA;
- bfdst = video::EBF_ONE_MINUS_SRC_ALPHA;
- blendop = video::EBO_ADD;
- break;
-
case ParticleParamTypes::BlendMode::add:
bfsrc = video::EBF_SRC_ALPHA;
bfdst = video::EBF_DST_ALPHA;
@@ -87,7 +81,11 @@ Particle::Particle(
blendop = video::EBO_ADD;
break;
- default: assert(false);
+ default: // includes ParticleParamTypes::BlendMode::alpha
+ bfsrc = video::EBF_SRC_ALPHA;
+ bfdst = video::EBF_ONE_MINUS_SRC_ALPHA;
+ blendop = video::EBO_ADD;
+ break;
}
// Texture
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment