DRTVWR-440, quick fix, add return value - needed for Mac build

master
Dave Houlton 2020-03-27 11:24:22 -06:00
parent 6620211bff
commit f61474fe5b
1 changed files with 2 additions and 0 deletions

View File

@ -676,6 +676,8 @@ inline const LLColor4 linearColor4(const LLColor4 &a)
linearColor.mV[1] = sRGBtoLinear(a.mV[1]);
linearColor.mV[2] = sRGBtoLinear(a.mV[2]);
linearColor.mV[3] = a.mV[3];
return linearColor;
}
#endif