Page 1 of 1

LSDJ on MintyPI

Posted: Wed Jul 17, 2019 4:58 am
by TinaStormcaller
I'm trying to get LSDJ to work in the Gameboy emulator, but it uses select + arrow keys to move between different pages. On the MintyPi (and I assume retroarch/RetroPie in general) it uses this to select between different save states instead so I can't use LSDJ.

So far I've tried adding a lsdj.gb.cfg in the same directory as the rom with:

Code: Select all

input_state_slot_increase_btn = "h"
input_state_slot_decrease_btn = "g"
in it to remap this function to the shoulder buttons, and I can see the above when I select "Edit custom retroarch config" in the launch options, but the config stays the same and I still can't use LSDJ. Please be advised that I'm not a super expert at raspberry pi stuff so I apologise if this is something super easy that I'm missing.

Any ideas?

Re: LSDJ on MintyPI

Posted: Wed Jul 17, 2019 5:28 am
by TinaStormcaller
Fixed it, set it as follows:

Code: Select all

input_state_slot_increase = "nul"
 input_state_slot_increase_btn = "nul"
 input_state_slot_increase_axis = "nul"
 input_state_slot_decrease = "nul"
 input_state_slot_decrease_btn = "nul"
 input_state_slot_decrease_axis = “nul”
This completely disables the save state select as I don't need to use it on this rom anyway. I did try and map them to g and h by trying it in every option but it wouldn't use the mapping, so I'll just leave it as this, and keep on tinkering. Putting this up so others can find it.