mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-18 15:57:10 +00:00
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
|
@ -91,7 +91,7 @@ namespace OpenTK.Platform.MacOS
|
||||||
{
|
{
|
||||||
if (IntPtr.Size == 4)
|
if (IntPtr.Size == 4)
|
||||||
{
|
{
|
||||||
return *(float*)f._value;
|
return *(float*)&f._value;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue