mirror of
https://github.com/holub/mame
synced 2025-06-10 06:47:18 +03:00
apple2: fix DHGR shift, NTSC artifact colors work with HLSL (GitHub issue #6308) [Colin Howell, R. Belmont]
This commit is contained in:
parent
12aaef7efd
commit
6c3c2044c0
@ -1245,7 +1245,7 @@ void a2_video_device::dhgr_update(screen_device &screen, bitmap_ind16 &bitmap, c
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 1:
|
case 1:
|
||||||
w >>= 7;
|
w >>= 6;
|
||||||
for (b = 0; b < 7; b++)
|
for (b = 0; b < 7; b++)
|
||||||
{
|
{
|
||||||
v = (w & 1);
|
v = (w & 1);
|
||||||
@ -1255,7 +1255,7 @@ void a2_video_device::dhgr_update(screen_device &screen, bitmap_ind16 &bitmap, c
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 2:
|
case 2:
|
||||||
w >>= 7;
|
w >>= 6;
|
||||||
for (b = 0; b < 7; b++)
|
for (b = 0; b < 7; b++)
|
||||||
{
|
{
|
||||||
v = (w & 1);
|
v = (w & 1);
|
||||||
@ -1265,7 +1265,7 @@ void a2_video_device::dhgr_update(screen_device &screen, bitmap_ind16 &bitmap, c
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 3:
|
case 3:
|
||||||
w >>= 7;
|
w >>= 6;
|
||||||
for (b = 0; b < 7; b++)
|
for (b = 0; b < 7; b++)
|
||||||
{
|
{
|
||||||
v = (w & 1);
|
v = (w & 1);
|
||||||
|
Loading…
Reference in New Issue
Block a user