#91829
minos
Participant

Thanks Buzz, i’m sure i have the latest, but in emulation station when i navigate to amiga emulator page and choose a game it tries to load and retrive a black screen and return to emulation station. Can help me here?

* I had put the rom files (i’m using as ‘kick.rom’ file the kick1.3 512kb rom) in pi/RetroPie/emulators/uae4rpi folder;
* Then put the games .adf files in pi/RetroPie/roms/amiga;
* Had added the entry of amiga emulator on es_config file, to have an amiga emulator page on emulation station:

DESCNAME=Amiga
NAME=amiga
PATH=/home/pi/RetroPie/roms/amiga
EXTENSION=.adf .ADF
COMMAND=/home/pi/RetroPie/emulators/uae4rpi/uae4rpi.sh %ROM%
PLATFORMID=4911

* Created the script at /home/pi/Retropie/emulators/uae4rpi/uae4rpi.sh with following content:

#!/bin/bash
UAEPATH=/home/pi/RetroPie/emulators/uae4rpi
rm -fr $UAEPATH/df*.adf
case $1 in
*_disk1.adf|*_disk1.ADF)
ln -s $1 $UAEPATH/df0.adf
ln -s ${1:0:-5}2.adf $UAEPATH/df1.adf
;;
*_disk2.adf|*_disk2.ADF)
ln -s $1 $UAEPATH/df1.adf
ln -s ${1:0:-5}1.adf $UAEPATH/df0.adf
;;
*)
ln -s $1 $UAEPATH/df0.adf
;;
esac
cd $UAEPATH
./uae4all

(did a “chmod +x uae4rpi.sh” to mark it as executable)

So if i try to run any amiga game from Emulation station it goes to terminal and apear the message:

sh: 1: /home/pi/RetroPie/emulators/uae4rpi/uae4rpi.sh: not found

and returs rapidly to emulation station

If i try to run uae from the terminal with:

./uae4all

it takes me to a black screen freezing the pi, must plug of to rebbot.

Please help me here…
Thanks in advance,
Pedro