Page 1 of 1
Restart NDS file
Posted: Thu Mar 24, 2011 11:06 pm
by JanMulder
Is it possible to restart the NDS file? I can't really explain it better than this. Just restarting the NDS file.
Re: Restart NDS file
Posted: Fri Mar 25, 2011 12:44 am
by elhobbs
Exiting and restarting is your best bet.
If you are using a loader with argv support then it is technically possible but it would not be trivial. This is probably one of those situations where if you need to ask...
Re: Restart NDS file
Posted: Fri Mar 25, 2011 9:33 pm
by JanMulder
Too bad... Thanks though!
Re: Restart NDS file
Posted: Fri Mar 25, 2011 9:47 pm
by vuurrobin
Code: Select all
bool restart = true;
int main()
{
while(restart)
{
restart = mygame();
}
return 0;
}
Re: Restart NDS file
Posted: Fri Mar 25, 2011 11:59 pm
by elhobbs
This may may be acceptable but it really doesn't get you to the same state as a restart.