Fix casting bug introduced in 127c6fd6

A "&" operator was accidently removed when updating variables to
auto-properties.
This commit is contained in:
Fraser Waters 2017-08-06 18:06:36 +01:00
parent feb8e8f6e3
commit 2e88a735dc

View file

@ -91,7 +91,7 @@ namespace OpenTK.Platform.MacOS
{
if (IntPtr.Size == 4)
{
return *(float*)f._value;
return *(float*)&f._value;
}
else
{