Forum Replies Created
-
AuthorPosts
-
sameParticipant
I noticed page up & down were inverted (at least on v3 beta 3 and 4), had to remap in my input.cfg
Peace
sameParticipantThe game specific config not loading issue should now be fixed in the v3 RC 1.
sameParticipantWell I got it working following these steps, after updating retropie-setup script I relaunched it, then selected “Setup / configuration”
I went through option ‘configure the runcommand’,then selected the ‘default’ option and that was it.
You may have to reboot your pi (I did).
Hope it will help some people !
sameParticipantI saw the bug report mentioned in this thread : https://github.com/RetroPie/RetroPie-Setup/issues/899
I updated the retropie-setup but I cannot find the command to perform the “runcommand install” as described by joolswills, any help ?
Thanks !
sameParticipantHi,
I am trying to get a rom specific input config for lr-fba without success.
I edited the ~/Retropie/roms/fba/avsp.zip.cfg with my fixes but it does not seem to be loaded.
If I edit /opt/retropie/configs/fba/retroarch.cfg, my fixes are loaded but are applied for every game…
Did someone manage to get it working ?
Thank you !
sameParticipantHello,
This link is the latest custom kernel that feederchain compiled:
https://www.dropbox.com/s/l96mgbsc2r8b7wf/custom_kernel_1.20150619-1.tar.gz?dl=0I’ve just checked and the link is not dead.
This kernel works perfectly using the latest v3 beta 4.
Here’s the related topic: https://www.petrockblock.com/forums/topic/autofire-on-the-axis/page/3/
This topic was about auto-fire issue (which has been fixed in latest official kernel) but also covers the 2 players issue.
Hope it helps.
sameParticipantHello feederchain,
Thank you for the custom kernel, it solves my problem of the missing axes for joystick #2 and now I have two separate inputs !
It would be interesting to get this fix into the official RetroPie release.
sameParticipantI just edited my previous post, as I had troubles to get the backticks appearing in the code block, I also misplaced one…
Should be fixed now.
sameParticipantHi doozy,
Had the same issue and found a post in this forum with a script made by erdnuesse member, I modified it a bit for my needs and here it goes:
Just after the
#!/bin/bash
in /usr/bin/emulationstation:# Thx erdnuesse # Set retry to the number of times you want the loop to repeat RETRY=20 # As long as we have retries left... if [ `mount -l -t nfs | wc -l` -eq 0 ]; then while [ $RETRY -gt 0 ]; do # This will become true if 'ping' gets a response # Modify the following IP with your server address if ping -c 1 -W 1 192.168.1.7 > /dev/null ; then echo "Mounting NFS Shares..." sudo mount -a -t nfs RETRY=0 else # Wait for 1 second sleep 1 RETRY=$((RETRY - 1)) if [ $RETRY -eq 0 ]; then echo "[ERROR] NFS Failed to mount: server sent no response to ping." fi fi done else echo "Note: NFS Shares already mounted." fi
Hope it helps !
-
AuthorPosts