Hex Editor - fix exception if autoload is set on table files when no files are in the recent menu
This commit is contained in:
parent
24937b21ca
commit
51e4a13384
|
@ -1271,6 +1271,11 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
private bool LoadTable(string path)
|
private bool LoadTable(string path)
|
||||||
{
|
{
|
||||||
|
if (string.IsNullOrWhiteSpace(path))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
var file = new FileInfo(path);
|
var file = new FileInfo(path);
|
||||||
if (!file.Exists)
|
if (!file.Exists)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue