Removed two void returns (how that even valid?!) from the 808x code.

This commit is contained in:
OBattler
2020-12-12 10:18:00 +01:00
parent d65207ec21
commit d31bca5279

View File

@@ -462,9 +462,9 @@ static void
writemem(uint32_t s, uint16_t v)
{
if (opcode & 1)
return writememw(s, cpu_state.eaaddr, v);
writememw(s, cpu_state.eaaddr, v);
else
return writememb(s, cpu_state.eaaddr, (uint8_t) (v & 0xff));
writememb(s, cpu_state.eaaddr, (uint8_t) (v & 0xff));
}