summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-05-15 23:10:49 -0400
committer AJR <ajrhacker@users.noreply.github.com>2018-05-15 23:11:45 -0400
commitb40115fee53bff7e821c707f18ceeda50f423445 (patch)
treeaa54b73a352cffc7fa691f434d28cf71d596811f
parentd3dcd7f8a3bbbdb2c3cba195684eb37ace94fcdc (diff)
cit101: Note (nw)
-rw-r--r--src/mame/drivers/cit101.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mame/drivers/cit101.cpp b/src/mame/drivers/cit101.cpp
index 160c538eab3..9069265c1ea 100644
--- a/src/mame/drivers/cit101.cpp
+++ b/src/mame/drivers/cit101.cpp
@@ -174,6 +174,10 @@ void cit101_state::draw_line(uint32_t *pixptr, int minx, int maxx, int line, boo
u32 cit101_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect)
{
+ // While screen height is fixed at 240 pixels, the number of character rows and the height of each row are not.
+ // The "Set-Up" screens configure 3 ordinary 10-pixel rows on the top (using two for double-height characters)
+ // and 2 more on the bottom, separated by 11 blank rows of 16 pixels and 1 blank row of 14 pixels.
+
const u8 scrattr = m_extraram[0];
int y = 0;