Raised JavaScript heap limit (intended to do it a while ago but forgot).

git-svn-id: http://svn.berlios.de/svnroot/repos/oolite-linux/trunk@5023 127b21dd-08f5-0310-b4b7-95ae10353056
This commit is contained in:
Jens Ayton 2012-06-21 06:56:20 +00:00
parent 8076181697
commit 8266c8b099

View File

@ -270,7 +270,7 @@ static void ReportJSError(JSContext *context, const char *message, JSErrorReport
assert(sizeof(jschar) == sizeof(unichar));
// initialize the JS run time, and return result in runtime.
_runtime = JS_NewRuntime(8L * 1024L * 1024L);
_runtime = JS_NewRuntime(32L * 1024L * 1024L);
// if runtime creation failed, end the program here.
if (_runtime == NULL)