diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-03-04 00:09:16 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-03-04 00:09:16 -0300 |
| commit | 479443564c5372ec9c768a9d41b1ffbdbbd5dd41 (patch) | |
| tree | 33634de2c388dadb74783f5bcab8294e7d14b357 | |
| parent | 8dcffe6a5103920ab63e46f93029b27e311335f3 (diff) | |
Remove unneeded log messages
| -rw-r--r-- | Ryujinx.Core/Hid/Hid.cs | 6 | ||||
| -rw-r--r-- | Ryujinx.Core/OsHle/Services/Nv/ServiceNvDrv.cs | 2 |
2 files changed, 0 insertions, 8 deletions
diff --git a/Ryujinx.Core/Hid/Hid.cs b/Ryujinx.Core/Hid/Hid.cs index c76782cf..d7227889 100644 --- a/Ryujinx.Core/Hid/Hid.cs +++ b/Ryujinx.Core/Hid/Hid.cs @@ -164,8 +164,6 @@ namespace Ryujinx.Core.Input public void SetTouchPoints(params HidTouchPoint[] Points) { - Logging.Debug("hid touch"); - long LastEntry = ReadInt64(HidTouchScreenOffset + 0x10); long CurrEntry = (LastEntry + 1) % HidEntryCount; @@ -226,8 +224,6 @@ namespace Ryujinx.Core.Input if ((ulong)Position + 4 > AMemoryMgr.AddrSize) return; - Logging.Debug($"hid wr32 {Position:x8} {Value:x8}"); - *((int*)((byte*)Ns.Ram + Position)) = Value; } @@ -237,8 +233,6 @@ namespace Ryujinx.Core.Input if ((ulong)Position + 8 > AMemoryMgr.AddrSize) return; - Logging.Debug($"hid wr64 {Position:x8} {Value:x16}"); - *((long*)((byte*)Ns.Ram + Position)) = Value; } } diff --git a/Ryujinx.Core/OsHle/Services/Nv/ServiceNvDrv.cs b/Ryujinx.Core/OsHle/Services/Nv/ServiceNvDrv.cs index 2f223891..0ea1d2ac 100644 --- a/Ryujinx.Core/OsHle/Services/Nv/ServiceNvDrv.cs +++ b/Ryujinx.Core/OsHle/Services/Nv/ServiceNvDrv.cs @@ -582,8 +582,6 @@ namespace Ryujinx.Core.OsHle.IpcServices.NvServices NvMap.Kind = Kind; } - Logging.Debug($"{NvMap.Address:x16}"); - return 0; } |
