User profile: toum

User info
User name:toum
History
Joined:
Number of posts:203
Latest posts:

Debugging question
The 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 pointers
Your 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 help
The 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

User: toum

  • Public profile