small changes

This commit is contained in:
emmaus 2018-11-03 10:14:31 +00:00
commit 2d31c4394a

View file

@ -9,8 +9,8 @@ namespace Ryujinx.HLE.FileSystem
{ {
class FileSystemProvider : IFileSystemProvider class FileSystemProvider : IFileSystemProvider
{ {
private string BasePath; private readonly string BasePath;
private string RootPath; private readonly string RootPath;
public FileSystemProvider(string BasePath, string RootPath) public FileSystemProvider(string BasePath, string RootPath)
{ {
@ -215,7 +215,7 @@ namespace Ryujinx.HLE.FileSystem
} }
} }
throw new InvalidOperationException($"Path {BasePath} is not a child directory of {RootPath}"); throw new InvalidOperationException($"Path {Path} is not a child directory of {RootPath}");
} }
} }
} }