Hex Editor - fix exception if autoload is set on table files when no files are in the recent menu

This commit is contained in:
adelikat 2018-06-23 11:29:06 -05:00
parent 24937b21ca
commit 51e4a13384
1 changed files with 5 additions and 0 deletions

View File

@ -1271,6 +1271,11 @@ namespace BizHawk.Client.EmuHawk
private bool LoadTable(string path)
{
if (string.IsNullOrWhiteSpace(path))
{
return false;
}
var file = new FileInfo(path);
if (!file.Exists)
{