From 548add9abd6e994400a91a8461fbb1f0a5463f84 Mon Sep 17 00:00:00 2001 From: Ac_K Date: Sat, 13 Mar 2021 04:12:36 +0100 Subject: [PATCH] Test: Fixes github action warning (#2100) This PR fixes a GitHub Action warning, nothing more. --- Ryujinx.Memory.Tests/MockVirtualMemoryManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.Memory.Tests/MockVirtualMemoryManager.cs b/Ryujinx.Memory.Tests/MockVirtualMemoryManager.cs index 0dd2ce461..245d365e7 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 OnProtect;