From 39bd356d8593ad981124f22449227427f10c038a Mon Sep 17 00:00:00 2001 From: Katy Coe Date: Mon, 24 Feb 2020 10:11:48 +0100 Subject: [PATCH] GUI: Add .bin .prx .sprx to binary dialog filter --- Il2CppInspector.GUI/MainWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Il2CppInspector.GUI/MainWindow.xaml.cs b/Il2CppInspector.GUI/MainWindow.xaml.cs index ad4e5cc..2de7cba 100644 --- a/Il2CppInspector.GUI/MainWindow.xaml.cs +++ b/Il2CppInspector.GUI/MainWindow.xaml.cs @@ -97,7 +97,7 @@ namespace Il2CppInspectorGUI var app = (App) Application.Current; var openFileDialog = new OpenFileDialog { - Filter = "Binary executable file (*.exe;*.dll;*.so)|*.exe;*.dll;*.so|All files (*.*)|*.*", + Filter = "Binary executable file (*.exe;*.dll;*.so;*.bin;*.prx;*.sprx)|*.exe;*.dll;*.so;*.bin;*.prx;*.sprx|All files (*.*)|*.*", CheckFileExists = true };