Hello ( = I am using Netbeans 8.2 on a Xubuntu 16.04 machine. It seems like I have run into a problem with my arrays. I create a few of them but it looks like I can't allocate enough memory for them. If I put all of them in app::begin I get a malloc memory corruption exception. If I split them between app::begin and app::loop I can create all of them without the exception, if I move all of them to app::loop I get the malloc memory corruption again. Is there a limit as to how much memory I can allocate in each of these classes? Oh, and I use "new int[variable]" for my arrays.
EDIT: Nevermind the fool here... A comma is not the same as a multiplier asterisk... (new int[variable,variable] VS. new int[variable*variable])
13/0