GBHawk: When windowing is active, start mode 3 earlier then usual (for pokemon yellow sync)
This commit is contained in:
parent
32f78cd311
commit
da1d190cce
|
@ -825,6 +825,17 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
|
|||
{
|
||||
read_case = 8;
|
||||
hbl_countdown = 5;
|
||||
if (window_started)
|
||||
{
|
||||
hbl_countdown -= 2;
|
||||
}
|
||||
}
|
||||
if (pixel_counter == 158 && window_started)
|
||||
{
|
||||
STAT &= 0xFC;
|
||||
STAT |= 0x00;
|
||||
|
||||
if (STAT.Bit(3)) { HBL_INT = true; }
|
||||
}
|
||||
}
|
||||
else if ((render_counter >= render_offset) && (pixel_counter < 0))
|
||||
|
|
Loading…
Reference in New Issue