21.06.2010, 15:48
Thanks for the quick reply oliverrud,
This is a problem I have experienced a few times. You could try reducing the size of the variables you retrieve from the MySQL server. For example.
You get 24 strings, all 256 big:
This is slightly unecessary and has caused me major issues in the past. Would you mind reducing it to 64?
Eg:
Give it a try.
Cheers,
TJ
This is a problem I have experienced a few times. You could try reducing the size of the variables you retrieve from the MySQL server. For example.
You get 24 strings, all 256 big:
Код:
playerfilesplit[24][256]
Eg:
Код:
playerfilesplit[24][64]
Cheers,
TJ