summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author ajrhacker <ajrhacker@users.noreply.github.com>2019-03-06 17:41:12 -0500
committer GitHub <noreply@github.com>2019-03-06 17:41:12 -0500
commit31762d7e186d3187540d9cea3c9ff4c4edf26d74 (patch)
tree4f07d9a5cea03db8bc68e7ad24775d2e358e9533 /src
parent1c30786bc515923b99d98a57a45e20380a6a419a (diff)
parentc4f0852c32f806d19a519ae108d15fa4cc78bc86 (diff)
Merge pull request #4725 from AmatCoder/AmatCoder-mc6845-1
mc6845.cpp: Do not reset line counter when screen parameters changed
Diffstat (limited to 'src')
-rw-r--r--src/devices/video/mc6845.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/devices/video/mc6845.cpp b/src/devices/video/mc6845.cpp
index da4a015a1c6..fe8e4a0119b 100644
--- a/src/devices/video/mc6845.cpp
+++ b/src/devices/video/mc6845.cpp
@@ -582,8 +582,6 @@ void mc6845_device::recompute_parameters(bool postload)
m_hsync_off_pos = hsync_off_pos;
m_vsync_on_pos = vsync_on_pos;
m_vsync_off_pos = vsync_off_pos;
- if (!postload) // set m_line_counter to 0 on normal operation, but not on postload
- m_line_counter = 0;
}
}