Update RomLoader.cs

Fixes #865
This commit is contained in:
alyosha-tas 2017-06-16 10:35:41 -04:00 committed by GitHub
parent 5a44c10a79
commit 93254b4b6e
1 changed files with 9 additions and 0 deletions

View File

@ -317,6 +317,15 @@ namespace BizHawk.Client.Common
}
else
{
// at this point, file is either assigned to the ROM path, if it exists,
// or is empty and corecomm is not a libretro core
// so, we still need to check path here before continuing
if (string.IsNullOrEmpty(path))
{
Console.WriteLine("No ROM to Load");
return false;
}
// if not libretro:
// do extension checknig
ext = file.Extension.ToLowerInvariant();