From 2af627953a7f61710e7bd58742f8b3cae7c1d3cc Mon Sep 17 00:00:00 2001 From: Yusuf Bham Date: Thu, 8 Aug 2024 13:05:52 -0400 Subject: [PATCH] Fix selection of linux GoG executable Closes #223 --- Scarab/Util/PathUtil.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scarab/Util/PathUtil.cs b/Scarab/Util/PathUtil.cs index 0dfc5a1..59f9952 100644 --- a/Scarab/Util/PathUtil.cs +++ b/Scarab/Util/PathUtil.cs @@ -62,7 +62,7 @@ string LocalizeToOS() Title = LocalizeToOS(), AllowMultiple = false, FileTypeFilter = new[] { new FilePickerFileType("Hollow Knight file") { - Patterns = new[] { "*.app", "*.exe", "*.x86_64" } + Patterns = new[] { "*.app", "*.exe", "*.x86_64", "Hollow Knight" } } } } )).FirstOrDefault();