Skip to content

Commit 0eae52d

Browse files
Fix #9 (.BIN instead of .bin extension)
Co-Authored-By: stevebroskey <946790+stevebroskey@users.noreply.github.com>
1 parent 8cd0f7b commit 0eae52d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PS5 NOR Modifier/MainWindow.axaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ private async void Button_OnClick(object? sender, RoutedEventArgs e)
168168
return;
169169
}
170170

171-
if(!file.Name.EndsWith(".bin"))
171+
if(!file.Name.EndsWith(".bin", StringComparison.InvariantCultureIgnoreCase))
172172
{
173173
ShowError("You did not select a .bin file. Please ensure the file you are choosing is a correct BIN file and try again.");
174174
return;

0 commit comments

Comments
 (0)