Bug fixes, xref search, more context menus

This commit is contained in:
Jack Andersen
2018-08-25 18:57:02 -10:00
parent 27cdee0c14
commit 19c5443e9e
17 changed files with 922 additions and 294 deletions

View File

@@ -315,7 +315,7 @@ inline T ClampFull(float in)
{
if (std::is_floating_point<T>())
{
return std::min<T>(std::max<T>(in, -1.f), 1.f);
return in;
}
else
{