mirror of
https://github.com/holub/mame
synced 2025-10-08 09:30:17 +03:00
tv910: Fix character row format
This commit is contained in:
parent
9d7a8e1e88
commit
261ec0c6dd
@ -446,7 +446,7 @@ MC6845_UPDATE_ROW( tv910_state::crtc_update_row )
|
|||||||
{
|
{
|
||||||
static const uint32_t palette[2] = { 0, 0x00ff00 };
|
static const uint32_t palette[2] = { 0, 0x00ff00 };
|
||||||
uint32_t *p = &bitmap.pix32(y);
|
uint32_t *p = &bitmap.pix32(y);
|
||||||
uint16_t chr_base = ra;
|
uint16_t chr_base = (ra + 1) & 7;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for ( i = 0; i < x_count; i++ )
|
for ( i = 0; i < x_count; i++ )
|
||||||
|
Loading…
Reference in New Issue
Block a user