I've got the following problem:
I'm aiming at reconfiguring the first network configuration settings.
For example change its name. As simple as that, I thought.
I tried this:
Code: Select all
if(sceUtilitySetNetParam(PSP_NETPARAM_NAME,(const void*)"TeSt") == 0) printf("SET Option..\n");
sceUtilityNetconfUpdate(1);
After quitting the EBOOT, the name of the config is still the same.
Does anyone have any idea?
Thx in advance,
greetZ AVGP
[EDIT]
Thanks to TyRANID!
He told me, that the config No. 0 is not the first config, but a special one. So I only had to copy the config 1 (which is the first "real" one) to 0 - change it and copy it back. Uff.