mirror of
https://github.com/holub/mame
synced 2025-10-06 17:08:28 +03:00
voodoo: Change 2x2 dither matrix values. Allows iteagle power-on video memory tests to pass. (nw)
This commit is contained in:
parent
a7a5d14693
commit
1656785386
@ -1019,16 +1019,23 @@ static const uint8_t dither_matrix_4x4[16] =
|
||||
15, 7, 13, 5
|
||||
};
|
||||
|
||||
//static const uint8_t dither_matrix_2x2[16] =
|
||||
//{
|
||||
// 2, 10, 2, 10,
|
||||
// 14, 6, 14, 6,
|
||||
// 2, 10, 2, 10,
|
||||
// 14, 6, 14, 6
|
||||
//};
|
||||
// Using this matrix allows iteagle video memory tests to pass
|
||||
static const uint8_t dither_matrix_2x2[16] =
|
||||
{
|
||||
2, 10, 2, 10,
|
||||
14, 6, 14, 6,
|
||||
2, 10, 2, 10,
|
||||
14, 6, 14, 6
|
||||
8, 10, 8, 10,
|
||||
11, 9, 11, 9,
|
||||
8, 10, 8, 10,
|
||||
11, 9, 11, 9
|
||||
};
|
||||
|
||||
|
||||
|
||||
/*************************************
|
||||
*
|
||||
* Macros for extracting pixels
|
||||
|
Loading…
Reference in New Issue
Block a user