Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -223,7 +223,7 @@ static void Main(string[] args)
{
case "-q":
case "--quiet":
quiteMode = true;
quietMode = true;
break;
case "-d":
case "--defaults":
Expand Down