Screen goes black and returns to menu.
According to the daphneGenerator.py file located here : /usr/lib/python2.7/site-packages/configgen/generators/daphne
it says :
extension used .daphne and the file to start the game is in the folder .daphne with the extension .txt
romName = os.path.splitext(os.path.basename(rom))[0]
frameFile = rom + “/” + romName + “.txt”
commandsFile = rom + “/” + romName + “.commands”
But that seems not to be right according the error log :
‘/userdata/roms/daphne/roms/dle21.zip/dle21.txt’
it should be :
‘/userdata/roms/daphne/dle21.daphne/dle21.txt’
The Filestructure is :
roms
|– daphne
| |– dle21.daphne
| | |– dle21.txt (Framefile)
| | |– lair.m2v
| | |– lair.ogg
| |
| +– roms
| +– dle21.zip
everything worked in Batocera 5.25.
by making a small change in the daphnegenerator.py and a small change to the filestructure i can make it work, but daphnegenerator.py gets overwritten when i reboot ..