• !! READ THIS FIRST !!

    Pinned Locked
    1
    41 Votes
    1 Posts
    566k Views
    No one has replied
  • Forum Rules

    Pinned Locked
    1
    17 Votes
    1 Posts
    60k Views
    No one has replied
  • Forum Account deletion

    Pinned
    67
    0 Votes
    67 Posts
    13k Views
    ?

    Hello, could you delete my account, please? Thank you!

  • Useful topics/posts index

    Pinned
    80
  • 0 Votes
    1 Posts
    43 Views
    No one has replied
  • 0 Votes
    6 Posts
    219 Views
    mituM

    , I haven’t modified the config.txt at all but I’ll see if I can post it (going to have to manually copy everything down because the pi zero 2 w can hardly use the web browser)

    You can copy the file through SSH/WinSCP, there's no need to start a browser on the Pi. Even though you haven't modified the file yourself, an installer you've ran may have done so. Either way, please post the contents of the file.

  • Problems with Skyscraper 3.17.3

    4
    0 Votes
    4 Posts
    210 Views
    LolonoisL

    Thanks again @sleve_mcdichael. This will make the identification of the culprit much easier, but there is a catch: I will be away for a few weeks, but will definitely fix this end of June.

    I was just asking for the ES version, to test on the same version, not that I was thinking ES has an issue.

    After some thinking, I guess my oversight that the gamelists may also reside inside ~/.emulationstation/gamelists/ could be the cause of some if not all issues.

    Setting the gamelistFolder to the same as the inputFolder and copy the existing gamelists to the inputFolder (i.e. sibling to the games) could be a workaround. However, it is a guess, I did not verify it by myself.

  • Retropie 4.8.9 and Daphne

    3
    0 Votes
    3 Posts
    472 Views
    W

    @pindapoe

    I had something similar to this and I had -x and -y arguments in the .commands file that was restricting the size of the video window. Take them out. But yeah, Hypseus all the way....

  • Updated Rclone needed? {Solved}

    7
    0 Votes
    7 Posts
    523 Views
    AddisonA

    Whoohoo!

    I got it back running once again!

    It gave me much joy to see that the save file from the Final Fantasy game I've been playing on handheld showed up as available on my Pi!

    I even said in my best hacker voice, "I'm in...." lol

    At least I took excellent notes this time around in case another update is ever needed. :)

  • Retropie 4.8.9 and Linaaple

    8
    0 Votes
    8 Posts
    356 Views
    P

    @Lolonois Tried apt list --installed | grep ^alsa but gave me a "command not found" error

    emulationstation.jpg

    I had to configure Audio Device to that way to make it work in Pi 5, maybe that is the problem with linapple?

  • MKDD Tint Issue RPI5

    175
    0 Votes
    175 Posts
    39k Views
    S

    You could try enabling manual texture sampling but make sure to use opemGl or else it wont work. That's how i solved it for resident evil 4 and MKDD

  • Streets of Rage Remake will not launch

    Locked
    7
    0 Votes
    7 Posts
    66 Views
    mituM

    Please use the Retropie-Extra topic for modules supported by that repository. Thank you.

  • This topic is deleted!

    Locked
    0
    0 Votes
    0 Posts
    3 Views
    No one has replied
  • ES not scrolling vertically

    1
    0 Votes
    1 Posts
    35 Views
    No one has replied
  • respberry pi 4

    2
    0 Votes
    2 Posts
    75 Views
    mituM

    How is this related to RetroPie ? If your only usage of the Pi is for Kodi, then I'd recommend you install a Kodi distribution like LibreElec.

  • 0 Votes
    10 Posts
    184 Views
    mituM

    @nixzero said in How to save controller configurations to IMG backup?:

    Does this provide any clues?

    Not really, the Joy2key keyboard messages are ok since they're associated with the runcommand menu and the joy2key utility. However, the fact that there are no disconnects for your physical gamepads means their connection is fine - it's what the dmesg command was used for.

  • Configure Joystick in Dolphin Standalone?!?!

    6
    0 Votes
    6 Posts
    187 Views
    M

    Now the issue is that when I try to configure my xbox controller, a hundred pop-up boxes appear alternating between "connected" and "disconnected."

  • If one were to install mednafen on retropie...

    4
    0 Votes
    4 Posts
    174 Views
    B

    @jmcdra said in If one were to install mednafen on retropie...:

    I'm also noticing this input delay on RetroArch too

    You should have started from there instead of making it look like a mednafen issue. In the first place, i can hardly make sense of using mednafen standalone to play nes games on rpi4, there are plenty of better options afaik.

    Retroarch has the P+K method to measure input lag, and in my experience the nes cores usually have 0 frames of input lag (i.e. the game reacts at the frame right after pressing a button), there might be exceptions but i doubt it ever goes beyond 1 frame.

    If you are experiencing huge input lag on nes emulation, then i can only suppose something unrelated to emulation is at work here, like display lag or something about your controllers.

  • RetroPie on Ubuntu server 24.02

    2
    0 Votes
    2 Posts
    95 Views
    R

    Please ignore, I did what seemed most simple and plucked the functions I needed from the script and that seems to work.

    #! /bin/bash function enable_plymouth_theme() { if [[ -z "$1" ]]; then echo "--------------------------------------------------------------------------------" echo "| Skipping Plymouth boot splash because no theme name was provided" echo "--------------------------------------------------------------------------------" echo -e "Skipped\n\n" return 255 fi PLYMOUTH_THEME=$1 echo "--------------------------------------------------------------------------------" echo "| Installing Plymouth boot splash and enabling theme '$PLYMOUTH_THEME'" echo "--------------------------------------------------------------------------------" apt-get install -y $APT_RECOMMENDS plymouth plymouth-themes plymouth-x11 rm -rf /tmp/plymouth-themes git clone --depth=1 https://github.com/HerbFargus/plymouth-themes.git /tmp/plymouth-themes mv /tmp/plymouth-themes/* /usr/share/plymouth/themes/ update-alternatives --install /usr/share/plymouth/themes/default.plymouth default.plymouth /usr/share/plymouth/themes/$PLYMOUTH_THEME/$PLYMOUTH_THEME.plymouth 10 update-alternatives --set default.plymouth /usr/share/plymouth/themes/$PLYMOUTH_THEME/$PLYMOUTH_THEME.plymouth update-initramfs -u echo -e "FINISHED enable_plymouth_theme \n\n" sleep 2 } # Hide Boot Messages function hide_boot_messages() { echo "--------------------------------------------------------------------------------" echo "| Hiding boot messages" echo "--------------------------------------------------------------------------------" # Hide kernel messages and blinking cursor via GRUB sed -i 's/GRUB_CMDLINE_LINUX_DEFAULT=".*"/GRUB_CMDLINE_LINUX_DEFAULT="quiet splash vt.global_cursor_default=0"/g' /etc/default/grub update-grub # Hide fsck messages after Plymouth splash echo 'FRAMEBUFFER=y' > /etc/initramfs-tools/conf.d/splash update-initramfs -u # Remove cloud-init to suppress its boot messages apt-get purge cloud-init -y rm -rf /etc/cloud/ /var/lib/cloud/ # Disable motd touch $USER_HOME/.hushlogin chown $USER:$USER $USER_HOME/.hushlogin echo -e "FINISHED hide_boot_messages \n\n" sleep 2 } enable_plymouth_theme "retropie-pacman" # See https://github.com/HerbFargus/plymouth-themes.git for other theme names hide_boot_messages
  • 0 Votes
    9 Posts
    141 Views
    mituM

    Hm, seems like the the hid_nintendo driver has some issues with the 8Bitdo pretending to be a Switch Pro Controller. Thanks for the investigatio and write-up.

    Generally, users use the XInput mode for 8Bitdo Pro(s) and use the hid_xpadneo driver, probably that's why there haven't been so many reports similar to yours.

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.