View Single Post
  #5  
Old 09-24-2009, 08:02 AM
leslamarch
Discordant
 
Join Date: Sep 2006
Location: Green Bay, WI
Posts: 436
Default

Maybe something like this?


Code:
{
    Process game = new Process();
    game.StartInfo.FileName = "eqgame.exe";
    game.StartInfo.Arguments = "patchme";
    game.Start();
    game.ProcessorAffinity = (IntPtr)1;
}
Reply With Quote