Fix wrong rotation direction on nvflinger

This commit is contained in:
gdkchan 2018-02-28 19:21:04 -03:00
parent 424e045940
commit eacd432387

View file

@ -274,7 +274,7 @@ namespace Ryujinx.Core.OsHle.IpcServices.Android
if (BufferQueue[Slot].Transform.HasFlag(HalTransform.Rotate90))
{
Rotate = MathF.PI * 0.5f;
Rotate = -MathF.PI * 0.5f;
}
byte* Fb = (byte*)Context.Ns.Ram + NvMap.Address;