mirror of
https://github.com/kwsch/pkNX.git
synced 2026-04-24 23:06:56 -05:00
Make sure the path is still valid (#271)
This commit is contained in:
parent
e70c652d1e
commit
2ed021edd0
|
|
@ -29,7 +29,7 @@ public Main()
|
|||
|
||||
Settings = SettingsSerializer.GetSettings<ProgramSettings>(ProgramSettingsPath).Result;
|
||||
CB_Lang.SelectedIndex = Settings.Language;
|
||||
if (!string.IsNullOrWhiteSpace(Settings.GamePath))
|
||||
if (!string.IsNullOrWhiteSpace(Settings.GamePath) && Directory.Exists(Settings.GamePath))
|
||||
OpenPath(Settings.GamePath, Settings.GameOverride);
|
||||
|
||||
DragDrop += (s, e) =>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user