Skip to content

Commit

Permalink
Merge pull request #11 from xanthalas/fix_quiet_variable_name
Browse files Browse the repository at this point in the history
Fix variable name (from quite to quiet).
  • Loading branch information
Gilles Khouzam authored Aug 14, 2017
2 parents 1a6f3f8 + 10d1f05 commit 864c54f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/ColorTool/ColorTool/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class Program
DARK_WHITE
};

static bool quiteMode = false;
static bool quietMode = false;
static bool setDefaults = false;
static bool setProperties = true;

Expand Down Expand Up @@ -189,7 +189,7 @@ static bool SetProperties(uint[] colorTable)
}
if (success)
{
if (!quiteMode)
if (!quietMode)
{
PrintTable();
}
Expand Down Expand Up @@ -227,7 +227,7 @@ static void Main(string[] args)
return;
case "-q":
case "--quiet":
quiteMode = true;
quietMode = true;
break;
case "-d":
case "--defaults":
Expand Down

0 comments on commit 864c54f

Please sign in to comment.