Posts: 115
Threads: 6
Joined: Jun 2011
Reputation:
0
dini_Int returns a integer, you need to use dini_Get instead.
Posts: 115
Threads: 6
Joined: Jun 2011
Reputation:
0
The password is nil. Make sure you set password (dini_Set) with characters.
Posts: 485
Threads: 9
Joined: May 2011
Reputation:
0
if(strcmp(inputtext, dini_Get(file, "Password"), true))
to
if(!strcmp(inputtext, dini_Get(file, "Password"), true))
strcmp returns 0 if the string matches.
Posts: 120
Threads: 22
Joined: Jul 2011
Reputation:
0
Thanks PrawkC, did not know that. It is working now thanks again.