Movie Importer: Display Failure Message

This commit is contained in:
alyosha-tas 2018-11-10 17:23:45 -06:00
parent f0271b1f72
commit 6dbbc9256a
1 changed files with 9 additions and 2 deletions

View File

@ -203,8 +203,15 @@ namespace BizHawk.Client.Common
errorMsg = except.ToString();
}
m.Filename += "." + BkmMovie.Extension;
if (m != null)
{
m.Filename += "." + BkmMovie.Extension;
}
else
{
throw new Exception(errorMsg);
}
return m;
}