Fix casting bug introduced in 127c6fd6
A "&" operator was accidently removed when updating variables to auto-properties.
This commit is contained in:
parent
feb8e8f6e3
commit
2e88a735dc
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ namespace OpenTK.Platform.MacOS
|
|||
{
|
||||
if (IntPtr.Size == 4)
|
||||
{
|
||||
return *(float*)f._value;
|
||||
return *(float*)&f._value;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue