#108823
LodanZark
Participant

go to /opt/retropie/supplementary/runcommand.sh

find this code:

# check for x/m key pressed to choose a screenmode (x included as it is useful on the picade)
clear
echo "Press a key (or joypad button 0) to configure launch options for emulator/port ($emulator). Errors will be logged to /tmp/runcommand.log"
IFS= read -s -t 1 -N 1 key </dev/tty
if [[ -n "$key" ]]; then
    get_all_modes
    main_menu
    dont_launch=$?
    clear
fi

reduce the time to zero by switching this line IFS= read -s -t 1 -N 1 key </dev/tty to IFS= read -s -t 0 -N 1 key </dev/tty