Fix a bug in ToolManager.Restart()

This commit is contained in:
adelikat 2014-12-13 23:02:32 +00:00
parent 94bd987a73
commit 557309eb6f
1 changed files with 1 additions and 1 deletions

View File

@ -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>