WIP: Headless in Avalonia #365

Closed
GreemDev wants to merge 12 commits from refactor/ava/headless-in-avalonia into master
Showing only changes of commit 2fc58d58a5 - Show all commits

View File

@ -160,7 +160,7 @@ namespace Ryujinx.Headless
{ {
configurationPath = appDataConfigurationPath; configurationPath = appDataConfigurationPath;
} }
else if (File.Exists(customConfigPath)) else if (customConfigPath != null && File.Exists(customConfigPath))
{ {
configurationPath = customConfigPath; configurationPath = customConfigPath;
} }