mirror of
https://github.com/FunKey-Project/picodrive-irixxxx.git
synced 2026-02-05 22:45:54 +01:00
32x, tentative fix for pad handling
This commit is contained in:
parent
8b15881889
commit
c5b2e3f357
@ -277,7 +277,10 @@ static NOINLINE u32 port_read(int i)
|
||||
// disables output before doing TH-low read, so don't emulate it for TH.
|
||||
// Decap Attack reportedly doesn't work on Nomad but works on must
|
||||
// other MD revisions (different pull-up strength?).
|
||||
out |= 0x3f & ~ctrl_reg;
|
||||
if (PicoIn.AHW & PAHW_32X) // don't do it on 32X, it breaks WWF Raw
|
||||
out |= 0x7f & ~ctrl_reg;
|
||||
else
|
||||
out |= 0x3f & ~ctrl_reg;
|
||||
|
||||
in = port_readers[i](i, out);
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user