mirror of
https://github.com/holub/mame
synced 2025-07-04 17:38:08 +03:00
And, obviously, make the hblank-in scanline counter to reset at proper screen height
This commit is contained in:
parent
b6220ce5a5
commit
64e07159cd
@ -2792,7 +2792,7 @@ TIMER_CALLBACK_MEMBER(powervr2_device::hbin)
|
|||||||
|
|
||||||
scanline++;
|
scanline++;
|
||||||
|
|
||||||
if(scanline >= (spg_vblank_int & 0x3ff))
|
if(scanline >= ((spg_load >> 16) & 0x3ff))
|
||||||
{
|
{
|
||||||
scanline = 0;
|
scanline = 0;
|
||||||
next_y = spg_hblank_int & 0x3ff;
|
next_y = spg_hblank_int & 0x3ff;
|
||||||
|
Loading…
Reference in New Issue
Block a user