GBHawk: Fix very stupid bug: Fixes Lego Racers

This commit is contained in:
alyosha-tas 2018-12-28 19:49:20 -06:00
parent 19f3aeec3a
commit cf806baff7
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk
public byte HDMA_ctrl
{
get { return (byte)(((HDMA_active ? 0 : 1) << 7) | ((HDMA_length >> 16) - 1)); }
get { return (byte)(((HDMA_active ? 0 : 1) << 7) | ((HDMA_length >> 4) - 1)); }
}