GBHawk: Fixes for Samurai Showdown

This commit is contained in:
alyosha-tas 2018-05-23 15:59:38 -04:00
parent 704356bea2
commit 70961dd1fc
2 changed files with 4 additions and 3 deletions

View File

@ -378,7 +378,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
window_y_tile = 0;
window_y_tile_inc = 0;
window_started = false;
window_is_reset = true;
if (!LCDC.Bit(5)) { window_is_reset = true; }
}
// Automatically restore access to VRAM at this time (force end drawing)
@ -1202,7 +1203,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
public override void process_sprite()
{
int y;
int VRAM_temp = SL_sprites[sl_use_index * 4 + 3].Bit(3) ? 1 : 0;
int VRAM_temp = (SL_sprites[sl_use_index * 4 + 3].Bit(3) && Core.GBC_compat) ? 1 : 0;
if (SL_sprites[sl_use_index * 4 + 3].Bit(6))
{

View File

@ -153,7 +153,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
window_y_tile = 0;
window_y_tile_inc = 0;
window_started = false;
window_is_reset = true;
if (!LCDC.Bit(5)) { window_is_reset = true; }
}
// Automatically restore access to VRAM at this time (force end drawing)