change discohawk to default to gui

This commit is contained in:
zeromus 2011-08-07 03:22:41 +00:00
parent c575c41f23
commit d60656afb6
1 changed files with 2 additions and 2 deletions

View File

@ -25,10 +25,10 @@ namespace BizHawk
void Run(string[] args)
{
bool gui = false;
bool gui = true;
foreach (var arg in args)
{
if (arg.ToUpper() == "GUI") gui = true;
if (arg.ToUpper() == "COMMAND") gui = false;
}
if (gui)