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:
parent
78f0b9252d
commit
bf6f6a54d0
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue