diff options
| author | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-09-13 06:48:37 +0000 |
|---|---|---|
| committer | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-09-13 06:48:37 +0000 |
| commit | d564ed46cf4ffd4279887985f543edbb4ba8d3f8 (patch) | |
| tree | 8d3bc4e79cb5e39fc488637d0737a734d48ffa24 | |
| parent | 71a6d4942d28da563d906934e85404d35846d51f (diff) | |
| download | pcsxr-d564ed46cf4ffd4279887985f543edbb4ba8d3f8.tar.gz | |
a little less aggressive
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@57140 e17a0e51-4ae3-4d35-97c3-1a29b211df97
| -rw-r--r-- | libpcsxcore/cdrom.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpcsxcore/cdrom.c b/libpcsxcore/cdrom.c index ab8a76c1..a6e40834 100644 --- a/libpcsxcore/cdrom.c +++ b/libpcsxcore/cdrom.c @@ -184,7 +184,7 @@ void cdrInterrupt() { SetResultSize(1); cdr.Result[0] = cdr.StatP; cdr.Stat = Acknowledge; - cdr.LidCheck++; + if (cdr.LidCheck == 0) cdr.LidCheck = 1; break; case CdlSetloc: @@ -236,7 +236,7 @@ void cdrInterrupt() { cdr.Result[0] = cdr.StatP; cdr.Stat = Complete; // cdr.Stat = Acknowledge; - cdr.LidCheck++; + if (cdr.LidCheck == 0) cdr.LidCheck = 1; break; case CdlPause: |
