From 08c0e3829bc96932d386de18647bde2768fe26ed Mon Sep 17 00:00:00 2001 From: Alex Barney Date: Mon, 9 Mar 2020 15:34:35 -0700 Subject: [PATCH] Insert the SD card by default (#968) --- Ryujinx.HLE/FileSystem/VirtualFileSystem.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Ryujinx.HLE/FileSystem/VirtualFileSystem.cs b/Ryujinx.HLE/FileSystem/VirtualFileSystem.cs index e671b4515..d4ffc5d3f 100644 --- a/Ryujinx.HLE/FileSystem/VirtualFileSystem.cs +++ b/Ryujinx.HLE/FileSystem/VirtualFileSystem.cs @@ -211,6 +211,8 @@ namespace Ryujinx.HLE.FileSystem GameCard = fsServerObjects.GameCard; SdCard = fsServerObjects.SdCard; + SdCard.SetSdCardInsertionStatus(true); + FileSystemServerConfig fsServerConfig = new FileSystemServerConfig { FsCreators = fsServerObjects.FsCreators,