Fix some whitespace formatting issues: stray tabs or spaces.
Wrap some long lines on affected code.
This commit is contained in:
@@ -67,12 +67,12 @@ namespace OpenRA.Mods.Common.Widgets
|
||||
{
|
||||
var c = (int*)cc;
|
||||
for (var s = 0; s < 256; s++)
|
||||
for (var h = 0; h < 256; h++)
|
||||
{
|
||||
#pragma warning disable IDE0047
|
||||
(*(c + s * 256 + h)) = Color.FromAhsv(h / 255f, 1 - s / 255f, V).ToArgb();
|
||||
#pragma warning restore IDE0047
|
||||
}
|
||||
for (var h = 0; h < 256; h++)
|
||||
{
|
||||
#pragma warning disable IDE0047
|
||||
(*(c + s * 256 + h)) = Color.FromAhsv(h / 255f, 1 - s / 255f, V).ToArgb();
|
||||
#pragma warning restore IDE0047
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user