mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
Fix empty savedatabackup folder
Expects a 'main' on launch, none found throws an exception before the form is shown.
This commit is contained in:
parent
ea83159370
commit
43135ae274
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ namespace PKHeX
|
|||
if (!SAV.Exportable) // No SAV loaded from exe args
|
||||
{
|
||||
string path = detectSaveFile();
|
||||
if (path != null)
|
||||
if (path != null && File.Exists(path))
|
||||
openQuick(path, force: true);
|
||||
else
|
||||
GB_SAVtools.Visible = false;
|
||||
|
|
Loading…
Reference in a new issue