Skip to content

Commit 520f03c

Browse files
author
Adam
committed
- disable video panning for now; something not right with address calc
1 parent bbe7a48 commit 520f03c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/mame/tektronix/tek440x.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -722,6 +722,7 @@ void tek440x_state::machine_reset()
722722
m_latched_map_control = 0;
723723
mapcntl_w(0);
724724
videocntl_w(0);
725+
videoaddr_w(0,0);
725726
}
726727

727728

@@ -742,7 +743,7 @@ u32 tek440x_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, co
742743
u32 invert = BIT(m_videocntl, 4) ? 0 : -1;
743744
int pan = (m_videocntl & 15) ^ 15;
744745

745-
int woffset = m_videoaddr[0] - 0xffe9; // ??? why
746+
int woffset = 0; m_videoaddr[0] - 0xffe9; // ??? why
746747

747748
for (int y = 0; y < 480; y++)
748749
{

0 commit comments

Comments
 (0)