mirror of
https://github.com/holub/mame
synced 2025-04-23 17:00:53 +03:00
apple2: correct value for floating bus offset, fixes a bunch of Deater rastersplit demos [R. Belmont]
This commit is contained in:
parent
9f5a9d11d4
commit
f53eb6022e
@ -871,7 +871,7 @@ uint8_t apple2_state::read_floatingbus()
|
||||
|
||||
// calculate vertical scanning state
|
||||
//
|
||||
v_line = (i / kHClocks) + 188; // which vertical scanning line
|
||||
v_line = (i / kHClocks) + 192; // which vertical scanning line
|
||||
v_state = kVLine0State + v_line; // V state bits
|
||||
if ((v_line >= kVPresetLine)) // check for previous vertical state preset
|
||||
{
|
||||
|
@ -2964,7 +2964,7 @@ uint8_t apple2e_state::read_floatingbus()
|
||||
|
||||
// calculate vertical scanning state
|
||||
//
|
||||
v_line = (i / kHClocks) + 188; // which vertical scanning line (MAME starts at blank, not the beginning of the scanning area)
|
||||
v_line = (i / kHClocks) + 192; // which vertical scanning line (MAME starts at blank, not the beginning of the scanning area)
|
||||
v_state = kVLine0State + v_line; // V state bits
|
||||
if ((v_line >= kVPresetLine)) // check for previous vertical state preset
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user