diff --git a/PS5 NOR Modifier/Form1.cs b/PS5 NOR Modifier/Form1.cs index 8f6dec8..654e038 100644 --- a/PS5 NOR Modifier/Form1.cs +++ b/PS5 NOR Modifier/Form1.cs @@ -365,7 +365,7 @@ private void browseFileButton_Click(object sender, EventArgs e) if (fileDialogBox.ShowDialog() == DialogResult.OK) { - if(fileDialogBox.CheckFileExists == false) + if (!File.Exists(fileDialogBox.FileName)) { throwError("The file you selected could not be found. Please check the file exists and is a valid BIN file."); }