Headless in Avalonia v2 #448

Merged
GreemDev merged 16 commits from refactor/ava/headless-in-avalonia-v2 into master 2024-12-28 09:49:06 +00:00
Showing only changes of commit 74a194424d - Show all commits

View File

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