Skip to content
Snippets Groups Projects
Commit f61474fe authored by Dave Houlton's avatar Dave Houlton
Browse files

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

parent 6620211b
No related branches found
No related tags found
No related merge requests found
...@@ -676,6 +676,8 @@ inline const LLColor4 linearColor4(const LLColor4 &a) ...@@ -676,6 +676,8 @@ inline const LLColor4 linearColor4(const LLColor4 &a)
linearColor.mV[1] = sRGBtoLinear(a.mV[1]); linearColor.mV[1] = sRGBtoLinear(a.mV[1]);
linearColor.mV[2] = sRGBtoLinear(a.mV[2]); linearColor.mV[2] = sRGBtoLinear(a.mV[2]);
linearColor.mV[3] = a.mV[3]; linearColor.mV[3] = a.mV[3];
return linearColor;
} }
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment