diff options
| author | SND\notaz_cp <SND\notaz_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2013-01-13 18:33:59 +0000 |
|---|---|---|
| committer | SND\notaz_cp <SND\notaz_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2013-01-13 18:33:59 +0000 |
| commit | 385f5c7fa4875851bebc04f780b7d36fbcb03dfa (patch) | |
| tree | 84fbd761800c4ca295ed99162b9fb47569e1b024 | |
| parent | ed0067182712bc8eec7c1d2648cfa1dc4ffaa112 (diff) | |
| download | pcsxr-385f5c7fa4875851bebc04f780b7d36fbcb03dfa.tar.gz | |
cdrom: also handle 0xff type
returned by some plugins
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@82239 e17a0e51-4ae3-4d35-97c3-1a29b211df97
| -rwxr-xr-x | libpcsxcore/cdrom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpcsxcore/cdrom.c b/libpcsxcore/cdrom.c index 34ec3ba8..428f8bce 100755 --- a/libpcsxcore/cdrom.c +++ b/libpcsxcore/cdrom.c @@ -1032,7 +1032,7 @@ void cdrInterrupt() { cdr.Result[3] = 0; // 0x10 - audio | 0x40 - disk missing | 0x80 - unlicensed - if (CDR_getStatus(&stat) == -1 || stat.Type == 0) { + if (CDR_getStatus(&stat) == -1 || stat.Type == 0 || stat.Type == 0xff) { cdr.Result[1] = 0xc0; } else { |
