add a missing break in half word reads
Fixes illegal halfword and byte reads (Croket! 2 slowdown)
This commit is contained in:
parent
b0c029a389
commit
b50ff8584c
|
@ -289,6 +289,7 @@ static inline uint32_t CPUReadHalfWord(uint32_t address)
|
||||||
// no need to swap this
|
// no need to swap this
|
||||||
value = flashRead(address) * 0x0101;
|
value = flashRead(address) * 0x0101;
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
// default
|
// default
|
||||||
default:
|
default:
|
||||||
unreadable:
|
unreadable:
|
||||||
|
|
Loading…
Reference in New Issue