I think it will choose to destroy the universe, cause that would be a blast, and well, I don't have a sister.

To a more serious note; I have changed every array and relevant for() so they start with 0. I got the text array working now, so thanks alot!

Quote:

Originally Posted By: Reconnoiter
Code:

//make array start with null values
j = 1;
for(i=1; j<5; i++)
{
pointer_pan[j][i] = NULL;
if (i >= 30) { j += 1; i = 1; }
}



You are only doing five iterations here.
, how come this does only does four iterations instead of 4 x 30? I think I am resetting i. Maybe I am getting blind here grin.