diff options
author | aliaspider | 2015-10-12 18:10:16 +0100 |
---|---|---|
committer | aliaspider | 2015-10-12 18:10:16 +0100 |
commit | 735bc9b39a4eb1de6aef4c4b1af6e0b48d578bde (patch) | |
tree | d91a83f735b63deb0b144483b2a78801a00917a9 | |
parent | 25f26d4d7ad16c98f29dbe0070c3b3d40688cc6e (diff) | |
download | snesemu-735bc9b39a4eb1de6aef4c4b1af6e0b48d578bde.tar.gz snesemu-735bc9b39a4eb1de6aef4c4b1af6e0b48d578bde.tar.bz2 snesemu-735bc9b39a4eb1de6aef4c4b1af6e0b48d578bde.zip |
type of SCPUState.IRQActive was incorrectly set to boolean.
-rw-r--r-- | source/snes9x.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/snes9x.h b/source/snes9x.h index f201b8f..63bb032 100644 --- a/source/snes9x.h +++ b/source/snes9x.h @@ -195,7 +195,7 @@ typedef struct uint32_t Flags; bool BranchSkip; bool NMIActive; - bool IRQActive; + uint8_t IRQActive; bool WaitingForInterrupt; bool InDMA; uint8_t WhichEvent; |