diff options
author | Twinaphex | 2016-08-22 09:43:48 +0200 |
---|---|---|
committer | GitHub | 2016-08-22 09:43:48 +0200 |
commit | 76b73ffc0973061695004010bc3323400832b3d7 (patch) | |
tree | b2f2a3abf06392bec9e05f502457e01d83e1a978 /source/sa1.h | |
parent | f3db21a50a0036abe72490511c64875588d96ae2 (diff) | |
parent | 7dc3469237068e1cdaae44be31c8be04811cfa39 (diff) | |
download | snes9x2005-76b73ffc0973061695004010bc3323400832b3d7.tar.gz snes9x2005-76b73ffc0973061695004010bc3323400832b3d7.tar.bz2 snes9x2005-76b73ffc0973061695004010bc3323400832b3d7.zip |
Merge pull request #19 from xperia64/master
Fix type of SSA1.IRQActive
Diffstat (limited to 'source/sa1.h')
-rw-r--r-- | source/sa1.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/sa1.h b/source/sa1.h index 5f3bad1..a52df1e 100644 --- a/source/sa1.h +++ b/source/sa1.h @@ -119,7 +119,7 @@ typedef struct uint32_t Flags; bool Executing; bool NMIActive; - bool IRQActive; + uint8_t IRQActive; bool WaitingForInterrupt; bool Waiting; // uint8_t WhichEvent; |