You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found this issue when trying out the Bandai Hyper Shot and the Family Trainer Mat. Those are both devices that would plug in to the Famicom's expansion port if used on real hardware. In lr-mesen, they are selectable via RetroArch's "port 5." However, when selected, the button inputs are taken from whatever device is assigned to port 1 instead. At least for the Family Trainer Mat, that seems to occur because of this section from libretro.cpp:
The condition in the "if" statement is apparently never met, so powerPadPort is always 0. There is a similar issue with the Bandai Hyper Shot (your lightgun device has to be assigned the mouse index used by port 1), but I can't seem to find where in the code this occurs. I am also not sure what exactly should be the condition in the "if" statement instead. If I find it, then I will send a PR, but does anyone have insight?
The text was updated successfully, but these errors were encountered:
Just to follow up on this, the Family Trainer taking button inputs from port 1 is problematic because at least some of the Family Trainer games require a controller as well as the floor pad. Select and start are mapped to Family Trainer buttons 11 and 12, respectively, so if you use one or both of those, you will simultaneously perform the in-game action and either pause or exit your current activity. Family Trainer 8 (Takeshi's Castle) is an example of this. I just forced powerPadPort to be equal to 4 (so port 5 on the user side) and removed the "if" condition entirely. powerPadPort isn't even used anywhere else. It works, and I can play Family Trainer 8 fine, but I don't know if there is supposed to be some overarching input structure with these expansion-port devices that I'd be interrupting by eliminating that condition which isn't working.
Hi,
I found this issue when trying out the Bandai Hyper Shot and the Family Trainer Mat. Those are both devices that would plug in to the Famicom's expansion port if used on real hardware. In lr-mesen, they are selectable via RetroArch's "port 5." However, when selected, the button inputs are taken from whatever device is assigned to port 1 instead. At least for the Family Trainer Mat, that seems to occur because of this section from
libretro.cpp
:The condition in the "if" statement is apparently never met, so
powerPadPort
is always 0. There is a similar issue with the Bandai Hyper Shot (your lightgun device has to be assigned the mouse index used by port 1), but I can't seem to find where in the code this occurs. I am also not sure what exactly should be the condition in the "if" statement instead. If I find it, then I will send a PR, but does anyone have insight?The text was updated successfully, but these errors were encountered: