Don't warn that a movie lacks sync settings if the core itself has no sync settings. Cores like Apple II do not, for instance. Fixes issue #437
This commit is contained in:
parent
aa75bd52e9
commit
261ae5e323
|
@ -1942,14 +1942,18 @@ namespace BizHawk.Client.EmuHawk
|
|||
}
|
||||
else
|
||||
{
|
||||
MessageBox.Show(
|
||||
e.Settings = Global.Config.GetCoreSyncSettings(e.Core);
|
||||
|
||||
// adelikat: only show this nag if the core actually has sync settings, not all cores do
|
||||
if (e.Settings != null)
|
||||
{
|
||||
MessageBox.Show(
|
||||
"No sync settings found, using currently configured settings for this core.",
|
||||
"No sync settings found",
|
||||
MessageBoxButtons.OK,
|
||||
MessageBoxIcon.Warning
|
||||
);
|
||||
|
||||
e.Settings = Global.Config.GetCoreSyncSettings(e.Core);
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue