mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 01:25:25 +00:00
Remove unneeded log messages
This commit is contained in:
parent
8dcffe6a51
commit
479443564c
|
@ -164,8 +164,6 @@ namespace Ryujinx.Core.Input
|
||||||
|
|
||||||
public void SetTouchPoints(params HidTouchPoint[] Points)
|
public void SetTouchPoints(params HidTouchPoint[] Points)
|
||||||
{
|
{
|
||||||
Logging.Debug("hid touch");
|
|
||||||
|
|
||||||
long LastEntry = ReadInt64(HidTouchScreenOffset + 0x10);
|
long LastEntry = ReadInt64(HidTouchScreenOffset + 0x10);
|
||||||
|
|
||||||
long CurrEntry = (LastEntry + 1) % HidEntryCount;
|
long CurrEntry = (LastEntry + 1) % HidEntryCount;
|
||||||
|
@ -226,8 +224,6 @@ namespace Ryujinx.Core.Input
|
||||||
|
|
||||||
if ((ulong)Position + 4 > AMemoryMgr.AddrSize) return;
|
if ((ulong)Position + 4 > AMemoryMgr.AddrSize) return;
|
||||||
|
|
||||||
Logging.Debug($"hid wr32 {Position:x8} {Value:x8}");
|
|
||||||
|
|
||||||
*((int*)((byte*)Ns.Ram + Position)) = Value;
|
*((int*)((byte*)Ns.Ram + Position)) = Value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -237,8 +233,6 @@ namespace Ryujinx.Core.Input
|
||||||
|
|
||||||
if ((ulong)Position + 8 > AMemoryMgr.AddrSize) return;
|
if ((ulong)Position + 8 > AMemoryMgr.AddrSize) return;
|
||||||
|
|
||||||
Logging.Debug($"hid wr64 {Position:x8} {Value:x16}");
|
|
||||||
|
|
||||||
*((long*)((byte*)Ns.Ram + Position)) = Value;
|
*((long*)((byte*)Ns.Ram + Position)) = Value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -582,8 +582,6 @@ namespace Ryujinx.Core.OsHle.IpcServices.NvServices
|
||||||
NvMap.Kind = Kind;
|
NvMap.Kind = Kind;
|
||||||
}
|
}
|
||||||
|
|
||||||
Logging.Debug($"{NvMap.Address:x16}");
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue