Parkydr
Developing for the GP2X since 2006
QUOTE
CODE
#include <stdio.h>
int main(int argc,char **argv)
{
fprintf(stderr,"Program entry\n");
return 0;
}
You get the problem with this code?
Even if main.gpe didn't exist, you'd expect to get
./main.gpe : No such file or directory
in error.txt
In your script, the last line should be
CODE
exec ./gp2xmenu
(what idiot gave you that script )
That's probably why the menu isn't coming back - doesn't explain why there's no text in error.txt though.
CODE
#include <stdio.h>
int main(int argc,char **argv)
{
fprintf(stderr,"Program entry\n");
return 0;
}
You get the problem with this code?
Even if main.gpe didn't exist, you'd expect to get
./main.gpe : No such file or directory
in error.txt
In your script, the last line should be
CODE
exec ./gp2xmenu
(what idiot gave you that script )
That's probably why the menu isn't coming back - doesn't explain why there's no text in error.txt though.