Hello, I am having a little bit of trouble with something, I have searched many forums, websites, and tutorials, but cannot find a way around this, Ok ill just jump strait into it.
Basicly, I have an array, like so:
int MapArray[MAP_HEIGHT][MAP_WIDTH] = {
{0, 0, 0, 0 },
{0, 0, 0, 0 }
};
Not like that. You can use memset to set all the values of an array at once but it sets them all to the same value. You're going to need to make a nested loop to go through every element in the array.