Kaydet (Commit) 8b5c1890 authored tarafından David Tardon's avatar David Tardon

WaE: missing braces around initializer for 'BYTE [8]'

üst 33aa7744
...@@ -108,28 +108,28 @@ static PALETTEENTRY aImplSalSysPalEntryAry[ DITHER_MAX_SYSCOLOR ] = ...@@ -108,28 +108,28 @@ static PALETTEENTRY aImplSalSysPalEntryAry[ DITHER_MAX_SYSCOLOR ] =
static BYTE aOrdDither8Bit[8][8] = static BYTE aOrdDither8Bit[8][8] =
{ {
0, 38, 9, 48, 2, 40, 12, 50, { 0, 38, 9, 48, 2, 40, 12, 50 },
25, 12, 35, 22, 28, 15, 37, 24, { 25, 12, 35, 22, 28, 15, 37, 24 },
6, 44, 3, 41, 8, 47, 5, 44, { 6, 44, 3, 41, 8, 47, 5, 44 },
32, 19, 28, 16, 34, 21, 31, 18, { 32, 19, 28, 16, 34, 21, 31, 18 },
1, 40, 11, 49, 0, 39, 10, 48, { 1, 40, 11, 49, 0, 39, 10, 48 },
27, 14, 36, 24, 26, 13, 36, 23, { 27, 14, 36, 24, 26, 13, 36, 23 },
8, 46, 4, 43, 7, 45, 4, 42, { 8, 46, 4, 43, 7, 45, 4, 42 },
33, 20, 30, 17, 32, 20, 29, 16 { 33, 20, 30, 17, 32, 20, 29, 16 }
}; };
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
static BYTE aOrdDither16Bit[8][8] = static BYTE aOrdDither16Bit[8][8] =
{ {
0, 6, 1, 7, 0, 6, 1, 7, { 0, 6, 1, 7, 0, 6, 1, 7 },
4, 2, 5, 3, 4, 2, 5, 3, { 4, 2, 5, 3, 4, 2, 5, 3 },
1, 7, 0, 6, 1, 7, 0, 6, { 1, 7, 0, 6, 1, 7, 0, 6 },
5, 3, 4, 2, 5, 3, 4, 2, { 5, 3, 4, 2, 5, 3, 4, 2 },
0, 6, 1, 7, 0, 6, 1, 7, { 0, 6, 1, 7, 0, 6, 1, 7 },
4, 2, 5, 3, 4, 2, 5, 3, { 4, 2, 5, 3, 4, 2, 5, 3 },
1, 7, 0, 6, 1, 7, 0, 6, { 1, 7, 0, 6, 1, 7, 0, 6 },
5, 3, 4, 2, 5, 3, 4, 2 { 5, 3, 4, 2, 5, 3, 4, 2 }
}; };
// ======================================================================= // =======================================================================
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment