Debugging questionThe code you're showing us is the part of code of std::vector that displays an error if ever the cal...
How to store a number in different variables[code] LSB = num & 0xFFFF; MSB = (num >> 16) & 0xFFFF; [/code]
Pointer to an array of pointersYour bool array only contains uninitialized pointers. You need to allocate memory for each ptr_array...
Equation help"%" is not a division but a modulus. [code] for (int i = 0; i < (maxx*maxy); i++) { myTile[theLay...
Equation helpThe problem is that you go to the next row before drawing the last tile of the current one. What if ...
This user does not accept Private Messages