Yo guys check me out for a sec

Started by
3 comments, last by Green_Baron 4 years, 8 months ago

So basically I'm here working with my game now 
this is what I got so far 

And my question is this: 
image.png.53fdb18e97e310b1e904f782f4b5425e.pngimage.png.be17bd848b1b9823dbeff88df51a5b0b.png
i keep getting this eerrror 
i tried to do this : 
And it still doesn't work .

and my question is does the game look good I want to make it mmorpg is it worth it by any chance?

Advertisement

Paste your function, you can probably do what you're doing differently.

Hello to all my stalkers.

You probably have a too big array allocated from the stack instead of from the heap. For reference, this is allocated from the stack:

 


GameObject array[ 1000 ];

 

And this is allocated from the heap:

 


std::vector< GameObject > array( 1000 );

 

Aether3D Game Engine: https://github.com/bioglaze/aether3d

Blog: http://twiren.kapsi.fi/blog.html

Control

Either that, excessively large function arguments, return values, deep recursion or a combination of these. Need the function to tell more ....

This topic is closed to new replies.

Advertisement