T
TelcoLou
Guest
Ok, I'm Soooo close to figuring this out :lol:
I wanted to make an "Emulators" folder to store all my quick-launch scripts. So far, I can only get emulators that are contained in seperate folders to run.
Here's 2 examples that work:
As I understand it, this will run the LCD_CPU Tweak program (located in my SD's root), then Change Directory to my DrMD folder which contains the DrMDx.gpe file.
This works perfectly.
^ this also works perfectly ... however, this one does not:
Seems like any .gpe that is stored in the root of the SD will not run via a script inside my Emulators folder. Any help would be GREATLY appreciated
I wanted to make an "Emulators" folder to store all my quick-launch scripts. So far, I can only get emulators that are contained in seperate folders to run.
Here's 2 examples that work:
Code:
#!/bin/sh
/mnt/sd/cpu_speed.gpe 1 2 200
cd /mnt/sd/DrMD/
./DrMDx.gpe
sync
cd /usr/gp2x/
exec /usr/gp2x/gp2xmenu
As I understand it, this will run the LCD_CPU Tweak program (located in my SD's root), then Change Directory to my DrMD folder which contains the DrMDx.gpe file.
This works perfectly.
Code:
#!/bin/sh
/mnt/sd/cpu_speed.gpe 1 2 266
cd /mnt/sd/gp2xmess-0.9-beta/gp2xmess
./a7800.gpe
sync
cd /usr/gp2x/
exec /usr/gp2x/gp2xmenu
^ this also works perfectly ... however, this one does not:
Code:
#!/bin/sh
/mnt/sd/cpu_speed.gpe 1 2 266
./squidgesnes.gpe
sync
cd /usr/gp2x/
exec /usr/gp2x/gp2xmenu
Seems like any .gpe that is stored in the root of the SD will not run via a script inside my Emulators folder. Any help would be GREATLY appreciated