--- trunk/RomCheater.CorePlugins/Config/GenericConfig.cs 2012/05/27 22:24:30 146 +++ trunk/RomCheater.CorePlugins/Config/GenericConfig.cs 2012/05/27 23:05:18 147 @@ -13,11 +13,10 @@ namespace RomCheater.CorePlugins.Config { public GenericConfig() : base() { } public GenericConfig(bool doinit) : base(doinit) { } - - protected override bool IsNotValidProcess(ProcContainer p) + protected override bool IsNotValidProcess(ProcContainer p) { logger.VerboseDebug.WriteLine(" Allowing process {0} to be added", p.Name); - return false; + return false; } #region IPluginBase Members public override Guid ID |