small changes
This commit is contained in:
parent
401569b7e6
commit
2d31c4394a
1 changed files with 3 additions and 3 deletions
|
@ -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}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue