GBHawk: fix spirou scrolling

This commit is contained in:
alyosha-tas 2019-11-04 15:32:22 -05:00
parent ae12b0e23c
commit bc45386467
3 changed files with 3 additions and 3 deletions

View File

@ -1100,7 +1100,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
}
render_counter = 8 - render_offset;
render_offset = 0;
render_offset = 7 - window_x_latch;
}
else
{

View File

@ -1134,7 +1134,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
}
render_counter = 8 - render_offset;
render_offset = 0;
render_offset = 7 - window_x_latch;
}
else
{

View File

@ -810,7 +810,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
}
render_counter = 8 - render_offset;
render_offset = 0;
render_offset = 7 - window_x_latch;
}
else
{