Skip to content
This repository was archived by the owner on Dec 15, 2025. It is now read-only.

Commit 38f0492

Browse files
stevebroskeysugoidogo
authored andcommitted
Fix TheCod3rYouTube#9 (.BIN instead of .bin extension)
Fixes TheCod3rYouTube#9 (TheCod3rYouTube#9) Better fix would involve doing something case-insensitive. I'm no C# dev, but consider combining https://stackoverflow.com/a/55480402 with https://stackoverflow.com/a/69284465.
1 parent aabf9b3 commit 38f0492

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

PS5 NOR Modifier/Form1.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ private void browseFileButton_Click(object sender, EventArgs e)
361361
{
362362
OpenFileDialog fileDialogBox = new OpenFileDialog();
363363
fileDialogBox.Title = "Open NOR BIN File";
364-
fileDialogBox.Filter = "PS5 BIN Files|*.bin";
364+
fileDialogBox.Filter = "PS5 BIN Files|*.bin;*.BIN";
365365

366366
if (fileDialogBox.ShowDialog() == DialogResult.OK)
367367
{
@@ -1156,4 +1156,4 @@ private void txtCustomCommand_KeyPress(object sender, KeyPressEventArgs e)
11561156
}
11571157
}
11581158
}
1159-
}
1159+
}

0 commit comments

Comments
 (0)