Check out the latest MegaGlest news on our e-mail newsletter (subscribe), Twitter, Facebook and Google+.
the problem seems to beConfig &Config::getInstance(){ static Config config; return config;}
Config &Config::getInstance(){ static Config *config = NULL; if ( !config ) { config = new Config(); } return *config;}