Fix a bug in ToolManager.Restart()
This commit is contained in:
parent
94bd987a73
commit
557309eb6f
|
@ -102,7 +102,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
public bool IsAvailable(Type toolType)
|
public bool IsAvailable(Type toolType)
|
||||||
{
|
{
|
||||||
return GetDependencies(toolType)
|
return GetDependencies(toolType)
|
||||||
.All(t => Global.Emulator.ServiceProvider.HasService(toolType));
|
.All(t => Global.Emulator.ServiceProvider.HasService(t));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
Loading…
Reference in New Issue