Fix accidental null passing
This commit is contained in:
parent
471034dc2e
commit
74a194424d
@ -161,7 +161,7 @@ namespace Ryujinx.Headless
|
|||||||
{
|
{
|
||||||
configurationPath = appDataConfigurationPath;
|
configurationPath = appDataConfigurationPath;
|
||||||
}
|
}
|
||||||
else if (File.Exists(customConfigPath))
|
else if (customConfigPath != null && File.Exists(customConfigPath))
|
||||||
{
|
{
|
||||||
configurationPath = customConfigPath;
|
configurationPath = customConfigPath;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user