GUI: Add .bin .prx .sprx to binary dialog filter

This commit is contained in:
Katy Coe
2020-02-24 10:11:48 +01:00
parent 39d1a95b37
commit 39bd356d85

View File

@@ -97,7 +97,7 @@ namespace Il2CppInspectorGUI
var app = (App) Application.Current; var app = (App) Application.Current;
var openFileDialog = new OpenFileDialog { 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 CheckFileExists = true
}; };