mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-01-23 13:35:04 +03:00
Fix accidental null passing
This commit is contained in:
parent
471034dc2e
commit
74a194424d
@ -161,7 +161,7 @@ namespace Ryujinx.Headless
|
||||
{
|
||||
configurationPath = appDataConfigurationPath;
|
||||
}
|
||||
else if (File.Exists(customConfigPath))
|
||||
else if (customConfigPath != null && File.Exists(customConfigPath))
|
||||
{
|
||||
configurationPath = customConfigPath;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user