diff options
| author | gameblabla | 2019-07-21 02:30:15 +0200 |
|---|---|---|
| committer | gameblabla | 2019-07-21 02:30:15 +0200 |
| commit | cf1af0ed3ca53d0d7092e87f1d090eb3b9b5b128 (patch) | |
| tree | ba30ef05b5ad2ed689780e9e2fd158fa1a14718d /libpcsxcore | |
| parent | f23c22410abc88088a33ddf391c9fae8a1705dac (diff) | |
| download | pcsx_rearmed-cf1af0ed3ca53d0d7092e87f1d090eb3b9b5b128.tar.gz pcsx_rearmed-cf1af0ed3ca53d0d7092e87f1d090eb3b9b5b128.tar.bz2 pcsx_rearmed-cf1af0ed3ca53d0d7092e87f1d090eb3b9b5b128.zip | |
psxbios: Fix card_status function as to use card_active_chan.
Diffstat (limited to 'libpcsxcore')
| -rw-r--r-- | libpcsxcore/psxbios.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpcsxcore/psxbios.c b/libpcsxcore/psxbios.c index 6a52d7e..ee307e3 100644 --- a/libpcsxcore/psxbios.c +++ b/libpcsxcore/psxbios.c @@ -2598,7 +2598,7 @@ void psxBios__card_status() { // 5c PSXBIOS_LOG("psxBios_%s: %x\n", biosB0n[0x5c], a0); #endif - v0 = 1; + v0 = card_active_chan; pc0 = ra; } |
