aboutsummaryrefslogtreecommitdiff
path: root/source/sa1.h
diff options
context:
space:
mode:
authorTwinaphex2017-01-25 00:22:07 +0100
committerGitHub2017-01-25 00:22:07 +0100
commit69f17114a277884d1b76f3be458f882b67e39265 (patch)
tree9ba12ae3cd84b35972e5eceedbd1aeba68d42354 /source/sa1.h
parent2747667a75d0512aaedfb166b7b92e9f99e14965 (diff)
parentd8b66ac6d0524b3538ad595825651b28329f9033 (diff)
downloadsnes9x2005-69f17114a277884d1b76f3be458f882b67e39265.tar.gz
snes9x2005-69f17114a277884d1b76f3be458f882b67e39265.tar.bz2
snes9x2005-69f17114a277884d1b76f3be458f882b67e39265.zip
Merge pull request #27 from jamsilva/master
Improved sound
Diffstat (limited to 'source/sa1.h')
-rw-r--r--source/sa1.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/sa1.h b/source/sa1.h
index 0958fc2..079fef5 100644
--- a/source/sa1.h
+++ b/source/sa1.h
@@ -104,7 +104,7 @@ static inline void S9xSA1PackStatus(void)
{
SA1.Registers.PL &= ~(Zero | Negative | Carry | Overflow);
SA1.Registers.PL |= SA1._Carry | ((SA1._Zero == 0) << 1) |
- (SA1._Negative & 0x80) | (SA1._Overflow << 6);
+ (SA1._Negative & 0x80) | (SA1._Overflow << 6);
}
static inline void S9xSA1FixCycles(void)