Skip to content

Commit

Permalink
Try enabling e-Amuse card support for ddr
Browse files Browse the repository at this point in the history
  • Loading branch information
DiscoStarslayer authored Jan 11, 2024
1 parent b6fb42b commit 39e4a54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pcsx2/USB/usb-python2/usb-python2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,8 @@ namespace usb_python2
if (s->devices[1] == nullptr)
{
auto aciodev = std::make_unique<acio_device>();
aciodev->add_acio_device(1, std::make_unique<acio_icca_device>(s->p2dev));
aciodev->add_acio_device(2, std::make_unique<acio_icca_device>(s->p2dev));
aciodev->add_acio_device(1, std::make_unique<acio_icca_device>(s->p2dev, s->f.cardFilenames[0]));
aciodev->add_acio_device(2, std::make_unique<acio_icca_device>(s->p2dev, s->f.cardFilenames[0]));
s->devices[1] = std::move(aciodev);
}
}
Expand Down

0 comments on commit 39e4a54

Please sign in to comment.