diff --git a/radiant/brush.h b/radiant/brush.h index 63e8f00e..9f73be8c 100644 --- a/radiant/brush.h +++ b/radiant/brush.h @@ -860,7 +860,11 @@ inline double quantiseInteger( double f ){ } inline double quantiseFloating( double f ){ +#if 0 return float_snapped( f, 1.f / ( 1 << 16 ) ); +#else + return f; +#endif } typedef double ( *QuantiseFunc )( double f );