diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-03-05 16:20:30 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-03-05 16:20:30 -0300 |
| commit | 2d9edddf8ccc32ce1b179a10e23bca1276289447 (patch) | |
| tree | ad926ca576959b572ceae52f538732ba556d37aa | |
| parent | 59d1b2ad83385dad49cf930e826ce0693b9cee2c (diff) | |
Remove QueryMemory workaround
| -rw-r--r-- | ChocolArm64/Decoder/AOpCodeSimdRegElem.cs | 2 | ||||
| -rw-r--r-- | Ryujinx.Core/OsHle/Svc/SvcMemory.cs | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/ChocolArm64/Decoder/AOpCodeSimdRegElem.cs b/ChocolArm64/Decoder/AOpCodeSimdRegElem.cs index 127debd1..721da88f 100644 --- a/ChocolArm64/Decoder/AOpCodeSimdRegElem.cs +++ b/ChocolArm64/Decoder/AOpCodeSimdRegElem.cs @@ -27,8 +27,6 @@ namespace ChocolArm64.Decoder default: Emitter = AInstEmit.Und; return; } - - } } }
\ No newline at end of file diff --git a/Ryujinx.Core/OsHle/Svc/SvcMemory.cs b/Ryujinx.Core/OsHle/Svc/SvcMemory.cs index 1bb3011b..bf946e4f 100644 --- a/Ryujinx.Core/OsHle/Svc/SvcMemory.cs +++ b/Ryujinx.Core/OsHle/Svc/SvcMemory.cs @@ -88,8 +88,6 @@ namespace Ryujinx.Core.OsHle.Svc long InfoPtr = (long)ThreadState.X0; long Position = (long)ThreadState.X2; - Position &= uint.MaxValue; - AMemoryMapInfo MapInfo = Memory.Manager.GetMapInfo(Position); if (MapInfo == null) |
