When loading a movie - account for a missing core header entry, fallback to the user's preferred core but give them a pop up warning about it

This commit is contained in:
adelikat 2020-05-22 11:52:56 -05:00
parent 78f0b9252d
commit bf6f6a54d0
1 changed files with 11 additions and 1 deletions

View File

@ -263,8 +263,18 @@ namespace BizHawk.Client.Common
if (Global.Config.PreferredCores.ContainsKey(preference))
{
string movieCore = Global.Config.PreferredCores[preference];
if (string.IsNullOrWhiteSpace(movie.Core))
{
PopupMessage($"No core specified in the movie file, using the preferred core {Global.Config.PreferredCores[preference]} instead.");
}
else
{
movieCore = movie.Core;
}
_preferredCores[preference] = Global.Config.PreferredCores[preference];
Global.Config.PreferredCores[preference] = movie.Core;
Global.Config.PreferredCores[preference] = movieCore;
}
}