From 3d1d3792ea3c04c05d994670cc40b3551c678728 Mon Sep 17 00:00:00 2001 From: Alex Barney Date: Wed, 30 Oct 2019 17:54:31 -0500 Subject: [PATCH] Update RyuFs paths --- Ryujinx.HLE/FileSystem/VirtualFileSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ryujinx.HLE/FileSystem/VirtualFileSystem.cs b/Ryujinx.HLE/FileSystem/VirtualFileSystem.cs index 5511ebcc9c..4ac7410dca 100644 --- a/Ryujinx.HLE/FileSystem/VirtualFileSystem.cs +++ b/Ryujinx.HLE/FileSystem/VirtualFileSystem.cs @@ -8,8 +8,8 @@ namespace Ryujinx.HLE.FileSystem public class VirtualFileSystem : IDisposable { public const string BasePath = "RyuFs"; - public const string NandPath = "nand"; - public const string SdCardPath = "sdmc"; + public const string NandPath = "bis"; + public const string SdCardPath = "sdcard"; public const string SystemPath = "system"; public static string SafeNandPath = Path.Combine(NandPath, "safe");