User profile: DaSpirit

User info
User name:DaSpirit
History
Joined:
Number of posts:35
Latest posts:

Pointer in Object
[quote]If your manager object keeps allocating memory to a pointer, you have a memory leak unless yo...

Pointer in Object
I'm wondering if I use a pointer inside an object and the pointer is from an object that keeps alloc...

Same header file in 2 source files problem
My error: [quote]1>winManager.obj : error LNK2005: "public: __thiscall winManager::winManager(void)"...

Same header file in 2 source files problem
Doesn't matter, I get the error because of the map_maker struct being defined in two .cpp files.

result of 'float' - 'float' ???
Have you tried: [code]float a = -1.5f, b=-1.4f; float c = a-b;[/code] I think your problem is that y...