mirror of
https://github.com/holub/mame
synced 2025-07-02 08:39:21 +03:00
atarist.cpp: Re-add mode 1 shifter kludge for PAL mode only
This commit is contained in:
parent
7b8077a1b7
commit
1e26288130
@ -206,6 +206,10 @@ TIMER_CALLBACK_MEMBER(st_video_device::glue_tick)
|
|||||||
int v = (y >= m_shifter_y_start) && (y < m_shifter_y_end);
|
int v = (y >= m_shifter_y_start) && (y < m_shifter_y_end);
|
||||||
int h = (x >= m_shifter_x_start) && (x < m_shifter_x_end);
|
int h = (x >= m_shifter_x_start) && (x < m_shifter_x_end);
|
||||||
|
|
||||||
|
if(m_shifter_mode == 1 && (m_shifter_sync & 0x02)) {
|
||||||
|
int dt = 8;
|
||||||
|
h = (x >= m_shifter_x_start-dt) && (x < m_shifter_x_end-dt);
|
||||||
|
}
|
||||||
int de = h && v;
|
int de = h && v;
|
||||||
|
|
||||||
if(!x) {
|
if(!x) {
|
||||||
|
Loading…
Reference in New Issue
Block a user