Comment Assert with broke the build with MSVC.
true fix coming.
This commit is contained in:
parent
6ba4c4a96e
commit
1701030080
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ extern long isqrt(long num);
|
|||
template <typename T>
|
||||
void clamp(T* value, T minValue, T maxValue)
|
||||
{
|
||||
Assert(minValue < maxValue);
|
||||
//Assert(minValue < maxValue);
|
||||
|
||||
if (*value < minValue) {
|
||||
*value = minValue;
|
||||
|
|
Loading…
Add table
Reference in a new issue