RetroPie forum home
    • Recent
    • Tags
    • Popular
    • Home
    • Docs
    • Register
    • Login
    Please do not post a support request without first reading and following the advice in https://retropie.org.uk/forum/topic/3/read-this-first

    Choose Emulator & Video mode screen menu now bugging?

    Scheduled Pinned Locked Moved Help and Support
    launch menubuglost control
    4 Posts 2 Posters 857 Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • darkniorD
      darknior
      last edited by darknior

      Hi

      Sorry to boring you but today the screen that we can call before launching a game to choose le Emulator, the Video Mode, Launch or Exit is not working fine for me.
      It's the first time, before all is working fine from many month ...

      Now when i push A button to see it, it is displayed on screen and then i can't move. I can't with my Gamepad and with my Keyboard.
      I can see it doing many bad things, writing letters, but it's like i'm not focused on the menu, like if i'm prompt on shell.
      If i do UP many time i will see writing all the command line i write before on shell.
      I must press 10 times the Q key of my keyboard and ENTER many time to quit this screen.

      0_1521338652859_20180318_025548_HDR.jpg

      Today the only thing i do on my pi was to try a script :

      https://retropie.org.uk/forum/topic/347/background-music-continued-from-help-support/313

      i install :

       sudo apt-get update
       sudo apt-get install python-pygame
      

      and launch the script with /opt/retropie/configs/all/autostart.sh

      python /home/pi/retropie_bgm.py &

      • I try to remove the script and it change nothing.
      • I re install the Runcommand from Retropie Setup, but nothing working fine :(
      • The only thing i don't try was to remove the python-pygame lib but a friend tel me there is problem with it.

      Is some on can help me please ?

      Life is game, just play it !

      1 Reply Last reply Reply Quote 0
      • darkniorD
        darknior
        last edited by

        So stupid ... it's my fault, i remove the "&" after emulationstation in autostart.sh and all is working fine again.
        But now i have open this issue, is some one can explain me why ?
        I add it to put after the BGM script, but maybe it is a stupid idea :(

        Life is game, just play it !

        mituM 1 Reply Last reply Reply Quote 0
        • mituM
          mitu Global Moderator @darknior
          last edited by mitu

          @darknior said in Choose Emulator & Video mode screen menu now bugging?:

          I add it to put after the BGM script, but maybe it is a stupid idea :(

          Because you added the script in the autostart.sh file, the output of that script (messages you see on the screen) are appearing on the user's terminal, which is used by ES or any other programs started by it - including the RetroPie setup script.
          To quiesce those messages, either start the script independently (not part of the autostart.sh) or redirect the script's messages to /dev/null:

          my_script 2>&1 1>/dev/null &
          
          darkniorD 1 Reply Last reply Reply Quote 0
          • darkniorD
            darknior @mitu
            last edited by

            @mitu said in Choose Emulator & Video mode screen menu now bugging?:

            To quiesce those messages, either start the script independently (not part of the autostart.sh) or redirect the script's messages to /dev/null:

            my_script 2>&1 1>/dev/null &
            

            Thanks, yes i add this to hide the script messages.
            And i add the line before emulationstation, like that it works.
            I don't understand before that this file output are appearing on the user's terminal.

            sudo bash -c 'echo 1 > /sys/module/bluetooth/parameters/disable_ertm'
            python /home/pi/retropie_bgm.py 2>&1 1>/dev/null &
            emulationstation
            

            Life is game, just play it !

            1 Reply Last reply Reply Quote 0
            • First post
              Last post

            Contributions to the project are always appreciated, so if you would like to support us with a donation you can do so here.

            Hosting provided by Mythic-Beasts. See the Hosting Information page for more information.