diff options
| author | Ac_K <Acoustik666@gmail.com> | 2021-03-13 04:12:36 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-13 04:12:36 +0100 |
| commit | 548add9abd6e994400a91a8461fbb1f0a5463f84 (patch) | |
| tree | 1af3ab5009b0f59f2a9b95c72312c7df377c23fc | |
| parent | 5ab5b0e709c3667ca85a6727620ff26f074e4ce5 (diff) | |
Test: Fixes github action warning (#2100)
This PR fixes a GitHub Action warning, nothing more.
| -rw-r--r-- | Ryujinx.Memory.Tests/MockVirtualMemoryManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Memory.Tests/MockVirtualMemoryManager.cs b/Ryujinx.Memory.Tests/MockVirtualMemoryManager.cs index 0dd2ce46..245d365e 100644 --- a/Ryujinx.Memory.Tests/MockVirtualMemoryManager.cs +++ b/Ryujinx.Memory.Tests/MockVirtualMemoryManager.cs @@ -4,7 +4,7 @@ namespace Ryujinx.Memory.Tests { class MockVirtualMemoryManager : IVirtualMemoryManager { - public bool NoMappings; + public bool NoMappings = false; public event Action<ulong, ulong, MemoryPermission> OnProtect; |
