summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libpcsxcore/cdrom.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libpcsxcore/cdrom.c b/libpcsxcore/cdrom.c
index 558140f0..c2ac65a3 100644
--- a/libpcsxcore/cdrom.c
+++ b/libpcsxcore/cdrom.c
@@ -256,7 +256,8 @@ void cdrInterrupt() {
cdr.Stat = DiskError;
cdr.Result[0] |= 0x11;
cdr.Result[0] &= ~0x02;
- } else if (i & 0x10) {
+ }
+ else if (i & 0x10) {
cdr.StatP |= 0x2;
cdr.Result[0] |= 0x2;
CheckCdrom();