sceUtilitySetNetParam Problem.[solved]

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Post Reply
User avatar
0xAVGP
Posts: 11
Joined: Sun Feb 05, 2006 3:28 am
Location: Burgwedel
Contact:

sceUtilitySetNetParam Problem.[solved]

Post by 0xAVGP »

Hey!

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);
And a version without the sceUtilityNetconfUpdate. (The parameter of this function has to be 1, following the docs.)

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.
Theory is, when nothing works and everybody knows that it should...

Pactic is, when everything works and nobody knows why...
Post Reply