Comment Assert with broke the build with MSVC.

true fix coming.
This commit is contained in:
Joris 2012-04-28 01:43:33 +02:00
parent 6ba4c4a96e
commit 1701030080

View file

@ -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;