You are not logged in.
Pages: 1
Thank you very much for adding this "--cflash" thing!
I have a problem though : reading works fine but writing not. It seems that fopen fails to create the output file in the following piece of code :
(...)
case 1 :
fic = fopen("/sortie.h3o","w");
if(fic != NULL)
{
fprintf(fic, "\ntest\n") ;
fclose(fic) ;
}
else
{
break ;
}
case 2:
return MENU ;
(...)
fopen returns NULL here. Any idea about this ? I am using DeSmume 0.7.3 under Ubuntu (Gutsy).
Nico.
Pages: 1