UCurveBase::GetValueRange

I’m not sure, is this the correct place to post this?


In CurveBase.cpp “…\Source\Runtime\Engine\Private\CurveBase.cpp”

Function void UCurveBase::GetValueRange(float& MinValue, float& MaxValue) const

at line 877 " MaxValue = FMath::Min(CurveMax, MaxValue); "

I’m think it should be MaxValue = FMath::Max(CurveMax, MaxValue); change FMath::Min to FMath::Max

Are there other better ways to report bugs?

Nice catch.

Why don’t you fix it yourself? :slight_smile: Edit it and do pull request

Didn’t know that you could fix it through Github :slight_smile: (i’m new to Github).

I created a pull request, thx.