CAZMIESTER
Active Member
- Joined
- May 30, 2010
- Messages
- 966
m8 im strugling to understand this im no programmer do you mean what daphne says is the problemyeah, the /tmp/pndrun_daphne.out
m8 im strugling to understand this im no programmer do you mean what daphne says is the problemyeah, the /tmp/pndrun_daphne.out
just got astron belt prototype running strange occurances started astron belt mach3 title appeared it sayed before wrong crc,continuing checkm8 im strugling to understand this im no programmer do you mean what daphne says is the problemyeah, the /tmp/pndrun_daphne.out
any way to paste this to a file and transfer cause there is about100 plus lines of text hereClick on Filesysten on the desktop, then on tmp and then on the pndrun_daphne.out. Please post the contents of this file.
already did thatThink I found the reason. Try to rename the framefile to esh.txt
Is there a program for this?Thanks for your testing. I think for the games, that have issues with speed, we should try to reencode the video maybe to 320x240 and a bitrate of around 2000-3000 kb/s. Will do that myself for DL1 tomorrow.
#!/bin/sh
export PATH=":${PATH:-"/usr/bin:/bin:/usr/local/bin"}"
export LD_LIBRARY_PATH="/mnt/utmp/daphne/lib:${LD_LIBRARY_PATH:-"/usr/lib:/lib"}"
export HOME="/mnt/utmp/daphne" XDG_CONFIG_HOME="/mnt/utmp/daphne"
export SDL_AUDIODRIVER="alsa"
mkdir framefile
mkdir roms
mkdir mpeg
mkdir mpeg/lair
mkdir ram
cd roms
ROMSEL=`zenity --file-selection --title="Select the romfile"`
case $? in
0)
ROMBASE=`basename $ROMSEL`
ROM=${ROMBASE%\.*}
echo "\"$ROM\" selected.";;
1)
exit;;
-1)
exit;;
esac
cd ..
cd framefile
FRAMEFILE=`zenity --file-selection --title="Select the framefile"`
case $? in
0)
echo "\"$FRAMEFILE\" selected.";;
1)
exit;;
-1)
exit;;
esac
cd ..
zenity --question --text="Show lives, score etc onscreen?" --ok-label="Yes" --cancel-label="No"
case $? in
0)
OVERLAY="-useoverlaysb"
OVERLAYNO="1"
;;
1)
OVERLAY="";;
esac
exec ./daphne.bin $ROM vldp -framefile $FRAMEFILE -fullscreen -homedir . $OVERLAY $OVERLAYNO $*
Is there a program for this?Thanks for your testing. I think for the games, that have issues with speed, we should try to reencode the video maybe to 320x240 and a bitrate of around 2000-3000 kb/s. Will do that myself for DL1 tomorrow.