aboutsummaryrefslogtreecommitdiff
path: root/source/snes9x.h
diff options
context:
space:
mode:
authoraliaspider2015-10-12 18:10:16 +0100
committeraliaspider2015-10-12 18:10:16 +0100
commit735bc9b39a4eb1de6aef4c4b1af6e0b48d578bde (patch)
treed91a83f735b63deb0b144483b2a78801a00917a9 /source/snes9x.h
parent25f26d4d7ad16c98f29dbe0070c3b3d40688cc6e (diff)
downloadsnes9x2005-735bc9b39a4eb1de6aef4c4b1af6e0b48d578bde.tar.gz
snes9x2005-735bc9b39a4eb1de6aef4c4b1af6e0b48d578bde.tar.bz2
snes9x2005-735bc9b39a4eb1de6aef4c4b1af6e0b48d578bde.zip
type of SCPUState.IRQActive was incorrectly set to boolean.
Diffstat (limited to 'source/snes9x.h')
-rw-r--r--source/snes9x.h2
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;