needs testing/a second eye on it - #1363

This commit is contained in:
Asnivor 2018-12-03 21:16:58 +00:00
parent d03e12590e
commit 0687d4a304
1 changed files with 2 additions and 2 deletions

View File

@ -227,8 +227,8 @@ namespace BizHawk.Emulation.Cores.PCEngine
for (; Registers[LENR] < 0xFFFF; Registers[LENR]--, wordsDone++)
{
VRAM[Registers[DESR] & 0x7FFF] = VRAM[Registers[SOUR] & 0x7FFF];
UpdatePatternData(Registers[DESR]);
UpdateSpriteData(Registers[DESR]);
UpdatePatternData((ushort)(Registers[DESR] & 0x7FFF));
UpdateSpriteData((ushort)(Registers[DESR] & 0x7FFF));
Registers[DESR] = (ushort)(Registers[DESR] + advanceDest);
Registers[SOUR] = (ushort)(Registers[SOUR] + advanceSource);