diff options
author | gameblabla | 2019-07-21 20:57:57 +0200 |
---|---|---|
committer | gameblabla | 2019-07-21 20:57:57 +0200 |
commit | c2360853ed4794a964e972d4837a83578ac01d04 (patch) | |
tree | 94541f890afb145c91bd905281e362c43b7c9f85 | |
parent | 9ee77db131fbb7708c0fdf2dda91dd92c277c20b (diff) | |
download | pcsx_rearmed-c2360853ed4794a964e972d4837a83578ac01d04.tar.gz pcsx_rearmed-c2360853ed4794a964e972d4837a83578ac01d04.tar.bz2 pcsx_rearmed-c2360853ed4794a964e972d4837a83578ac01d04.zip |
psxbios: Fixup mistake in card_info function.
This fixes Looney Tunes Sheep Raiders.
-rw-r--r-- | libpcsxcore/psxbios.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libpcsxcore/psxbios.c b/libpcsxcore/psxbios.c index 7c908e3..93a4057 100644 --- a/libpcsxcore/psxbios.c +++ b/libpcsxcore/psxbios.c @@ -1593,11 +1593,8 @@ void psxBios__card_info() { // ab break; } -// DeliverEvent(0x11, 0x2); // 0xf0000011, 0x0004 -// DeliverEvent(0x11, 0x2); // 0xf0000011, 0x0004 - DeliverEvent(0x81, 0x2); // 0xf4000001, 0x0004 + DeliverEvent(0x11, 0x2); // 0xf4000001, 0x0004 DeliverEvent(0x81, ret); // 0xf4000001, 0x0004 - v0 = 1; pc0 = ra; } |