ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.CorePlugins/Config/PCSX2Config.cs
(Generate patch)

Comparing trunk/RomCheater.CorePlugins/Config/PCSX2Config.cs (file contents):
Revision 107 by william, Wed May 9 23:23:38 2012 UTC vs.
Revision 108 by william, Thu May 10 11:31:05 2012 UTC

# Line 30 | Line 30 | namespace RomCheater.CorePlugins.Config
30              bool notvalid = !IsValidPSX2Process(p.ProcessInfo.Id, out isDebug, out VTLB_RELEASE_OFFSET);
31              if (notvalid)
32              {
33 <                logger.Debug.WriteLine("    Not Allowing process {0} to be added because it was filterd out", p.Name);
33 >                logger.VerboseDebug.WriteLine("    Not Allowing process {0} to be added because it was filterd out", p.Name);
34              }
35              else
36              {
37 <                logger.Debug.WriteLine("    Allowing process {0} to be added", p.Name);
37 >                logger.VerboseDebug.WriteLine("    Allowing process {0} to be added", p.Name);
38              }
39              return notvalid;
40          }
# Line 86 | Line 86 | namespace RomCheater.CorePlugins.Config
86                  r.Close();
87                  if (!isExe)
88                  {
89 <                    logger.Debug.WriteLine("  Process: {0} is not a valid executable file", filename);
89 >                    logger.VerboseDebug.WriteLine("  Process: {0} is not a valid executable file", filename);
90                      isValid = false;
91                  }
92                  else
# Line 98 | Line 98 | namespace RomCheater.CorePlugins.Config
98                      if (found_string.ToLower().Contains(PCXS2_LOOKUP_MAGIC_001.ToLower()) && found_string.ToLower().Contains(PCXS2_LOOKUP_MAGIC_002.ToLower()))
99                      {
100                          isValid = true;
101 <                        logger.Debug.WriteLine("  Process: {0} found MAGIC LOOKUP {1} and {2}", filename, PCXS2_LOOKUP_MAGIC_001.ToLower(), PCXS2_LOOKUP_MAGIC_002.ToLower());
101 >                        logger.VerboseDebug.WriteLine("  Process: {0} found MAGIC LOOKUP {1} and {2}", filename, PCXS2_LOOKUP_MAGIC_001.ToLower(), PCXS2_LOOKUP_MAGIC_002.ToLower());
102                      }
103                      sr.Close();
104  
# Line 110 | Line 110 | namespace RomCheater.CorePlugins.Config
110                      if (found_string.ToLower().Contains("DebugBreak".ToLower()))
111                      {
112                          isDebug = true;
113 <                        logger.Debug.WriteLine("  Process: {0} found DebugBreak", filename);
113 >                        logger.VerboseDebug.WriteLine("  Process: {0} found DebugBreak", filename);
114                      }
115                      sr.Close();
116                  }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines