Fixed missing break statement that caused games that use h-irqs to break

This commit is contained in:
Sour 2019-07-07 18:57:04 -04:00
parent 5c17890142
commit e3730a90c0

View file

@ -188,6 +188,7 @@ void InternalRegisters::Write(uint16_t addr, uint8_t value)
case 0x4205:
case 0x4206:
_aluMulDiv.Write(addr, value);
break;
case 0x4207: _horizontalTimer = (_horizontalTimer & 0x100) | value; break;
case 0x4208: _horizontalTimer = (_horizontalTimer & 0xFF) | ((value & 0x01) << 8); break;