Procházet zdrojové kódy

Test: Fixes github action warning (#2100)

This PR fixes a GitHub Action warning, nothing more.
Ac_K před 5 roky
rodič
revize
548add9abd

+ 1 - 1
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;