Browse Source

Make bnd_clamp static inline.

master
Andrew Belt 4 days ago
parent
commit
ec02310b11
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      blendish.c

+ 1
- 1
blendish.c View File

@@ -70,7 +70,7 @@ static double bnd_fmax ( double a, double b )

////////////////////////////////////////////////////////////////////////////////

BND_INLINE float bnd_clamp(float v, float mn, float mx) {
static BND_INLINE float bnd_clamp(float v, float mn, float mx) {
return (v > mx)?mx:(v < mn)?mn:v;
}



Loading…
Cancel
Save