|
|
|
@ -18,6 +18,7 @@
|
|
|
|
|
#include "nel/misc/app_context.h"
|
|
|
|
|
#include "nel/misc/dynloadlib.h"
|
|
|
|
|
#include "nel/misc/command.h"
|
|
|
|
|
#include "nel/misc/system_utils.h"
|
|
|
|
|
|
|
|
|
|
#include <locale.h>
|
|
|
|
|
|
|
|
|
@ -71,6 +72,9 @@ INelContext::~INelContext()
|
|
|
|
|
|
|
|
|
|
CInstanceCounterLocalManager::releaseInstance();
|
|
|
|
|
|
|
|
|
|
// uninit some systems stuff
|
|
|
|
|
CSystemUtils::uninit();
|
|
|
|
|
|
|
|
|
|
_NelContext = NULL;
|
|
|
|
|
*(_getInstance()) = NULL;
|
|
|
|
|
}
|
|
|
|
@ -90,6 +94,9 @@ void INelContext::contextReady()
|
|
|
|
|
// set numeric locale to C to avoid the use of decimal separators different of a dot
|
|
|
|
|
char *locale = setlocale(LC_NUMERIC, "C");
|
|
|
|
|
|
|
|
|
|
// init some systems stuff
|
|
|
|
|
CSystemUtils::init();
|
|
|
|
|
|
|
|
|
|
// register any pending thinks
|
|
|
|
|
|
|
|
|
|
// register local instance counter in the global instance counter manager
|
|
|
|
|