summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-01-19 01:49:49 -0500
committer AJR <ajrhacker@users.noreply.github.com>2018-01-19 01:49:55 -0500
commit261ec0c6dd7bd367b65fbca19acb1148d794045b (patch)
treedcf9e74c65095a421f9e22068b4279df178e7b64
parent9d7a8e1e88a12d9677ba6cdeb297531a8349ea69 (diff)
tv910: Fix character row format
-rw-r--r--src/mame/drivers/tv910.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/tv910.cpp b/src/mame/drivers/tv910.cpp
index 9c4f7680f56..a5c907f4cee 100644
--- a/src/mame/drivers/tv910.cpp
+++ b/src/mame/drivers/tv910.cpp
@@ -446,7 +446,7 @@ MC6845_UPDATE_ROW( tv910_state::crtc_update_row )
{
static const uint32_t palette[2] = { 0, 0x00ff00 };
uint32_t *p = &bitmap.pix32(y);
- uint16_t chr_base = ra;
+ uint16_t chr_base = (ra + 1) & 7;
int i;
for ( i = 0; i < x_count; i++ )