mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 21:06:39 +00:00
Fix wrong rotation direction on nvflinger
This commit is contained in:
parent
424e045940
commit
eacd432387
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue