17.05.2012, 14:16
Hi! I have a little tricky question: 
I want to create a string with certain size within array but it doesn't work. Any questions how to fix this?
The code below works:
The code below not work (but I must have it):

I want to create a string with certain size within array but it doesn't work. Any questions how to fix this?
The code below works:
Код:
enum MapData
{
...
mPickup_Text[MAX__PICKUPS],
...
}
new Map[MAX_MAPS][MapData];
Код:
enum MapData
{
...
mPickup_Text[MAX__PICKUPS][64],
...
}
new Map[MAX_MAPS][MapData];


.